Skip to content

Commit d610e4b

Browse files
authored
protocols/dcutr: Disable libp2p-core default features (#2836)
1 parent 4253080 commit d610e4b

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

protocols/dcutr/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 0.5.1
2+
3+
- Make default features of `libp2p-core` optional. See [PR 2836].
4+
5+
[PR 2836]: https://github.com/libp2p/rust-libp2p/pull/2836/
6+
17
# 0.5.0
28

39
- Update to `libp2p-swarm` `v0.38.0`.

protocols/dcutr/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "libp2p-dcutr"
33
edition = "2021"
44
rust-version = "1.56.1"
55
description = "Direct connection upgrade through relay"
6-
version = "0.5.0"
6+
version = "0.5.1"
77
authors = ["Max Inden <[email protected]>"]
88
license = "MIT"
99
repository = "https://github.com/libp2p/rust-libp2p"
@@ -17,7 +17,7 @@ either = "1.6.0"
1717
futures = "0.3.1"
1818
futures-timer = "3.0"
1919
instant = "0.1.11"
20-
libp2p-core = { version = "0.35.0", path = "../../core" }
20+
libp2p-core = { version = "0.35.0", path = "../../core", default-features = false }
2121
libp2p-swarm = { version = "0.38.0", path = "../../swarm" }
2222
log = "0.4"
2323
prost-codec = { version = "0.2", path = "../../misc/prost-codec" }

0 commit comments

Comments
 (0)