mirror of
https://github.com/fluencelabs/rust-libp2p
synced 2025-06-05 22:21:20 +00:00
*: Make libp2p-core default features optional (#2181)
Co-authored-by: Max Inden <mail@max-inden.de>
This commit is contained in:
parent
49acf2eb5b
commit
f2905c07f1
@ -20,7 +20,7 @@ unsigned-varint = "0.7"
|
|||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
async-std = "1.6.2"
|
async-std = "1.6.2"
|
||||||
env_logger = "0.9"
|
env_logger = "0.9"
|
||||||
libp2p-core = { path = "../../core" }
|
libp2p-core = { path = "../../core", default-features = false }
|
||||||
libp2p-mplex = { path = "../../muxers/mplex" }
|
libp2p-mplex = { path = "../../muxers/mplex" }
|
||||||
libp2p-plaintext = { path = "../../transports/plaintext" }
|
libp2p-plaintext = { path = "../../transports/plaintext" }
|
||||||
quickcheck = "0.9.0"
|
quickcheck = "0.9.0"
|
||||||
|
@ -11,5 +11,5 @@ categories = ["network-programming", "asynchronous"]
|
|||||||
publish = false
|
publish = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
libp2p-core = { path = "../../core" }
|
libp2p-core = { path = "../../core", default-features = false }
|
||||||
num_cpus = "1.8"
|
num_cpus = "1.8"
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
# 0.30.0 [unreleased]
|
# 0.30.0 [unreleased]
|
||||||
|
|
||||||
|
- Make default features of `libp2p-core` optional.
|
||||||
|
[PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181)
|
||||||
- Update dependencies.
|
- Update dependencies.
|
||||||
|
|
||||||
# 0.29.0 [2021-07-12]
|
# 0.29.0 [2021-07-12]
|
||||||
|
@ -13,7 +13,7 @@ categories = ["network-programming", "asynchronous"]
|
|||||||
bytes = "1"
|
bytes = "1"
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
asynchronous-codec = "0.6"
|
asynchronous-codec = "0.6"
|
||||||
libp2p-core = { version = "0.30.0", path = "../../core" }
|
libp2p-core = { version = "0.30.0", path = "../../core", default-features = false }
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
nohash-hasher = "0.2"
|
nohash-hasher = "0.2"
|
||||||
parking_lot = "0.11"
|
parking_lot = "0.11"
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
# 0.34.0 [unreleased]
|
# 0.34.0 [unreleased]
|
||||||
|
|
||||||
|
- Make default features of `libp2p-core` optional.
|
||||||
|
[PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181)
|
||||||
|
|
||||||
- Update dependencies.
|
- Update dependencies.
|
||||||
|
|
||||||
- Implement `From<io::Error> for YamuxError` instead of `Into`.
|
- Implement `From<io::Error> for YamuxError` instead of `Into`.
|
||||||
|
@ -11,7 +11,7 @@ categories = ["network-programming", "asynchronous"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
libp2p-core = { version = "0.30.0", path = "../../core" }
|
libp2p-core = { version = "0.30.0", path = "../../core", default-features = false }
|
||||||
parking_lot = "0.11"
|
parking_lot = "0.11"
|
||||||
thiserror = "1.0"
|
thiserror = "1.0"
|
||||||
yamux = "0.9.0"
|
yamux = "0.9.0"
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
# 0.31.0 [unreleased]
|
# 0.31.0 [unreleased]
|
||||||
|
|
||||||
|
- Make default features of `libp2p-core` optional.
|
||||||
|
[PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181)
|
||||||
|
|
||||||
- Update dependencies.
|
- Update dependencies.
|
||||||
|
|
||||||
# 0.30.0 [2021-07-12]
|
# 0.30.0 [2021-07-12]
|
||||||
|
@ -13,7 +13,7 @@ categories = ["network-programming", "asynchronous"]
|
|||||||
cuckoofilter = "0.5.0"
|
cuckoofilter = "0.5.0"
|
||||||
fnv = "1.0"
|
fnv = "1.0"
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
libp2p-core = { version = "0.30.0", path = "../../core" }
|
libp2p-core = { version = "0.30.0", path = "../../core", default-features = false }
|
||||||
libp2p-swarm = { version = "0.31.0", path = "../../swarm" }
|
libp2p-swarm = { version = "0.31.0", path = "../../swarm" }
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
prost = "0.8"
|
prost = "0.8"
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
# 0.33.0 [unreleased]
|
# 0.33.0 [unreleased]
|
||||||
|
|
||||||
|
- Make default features of `libp2p-core` optional.
|
||||||
|
[PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181)
|
||||||
|
|
||||||
- Improve internal peer tracking.
|
- Improve internal peer tracking.
|
||||||
[PR 2175](https://github.com/libp2p/rust-libp2p/pull/2175)
|
[PR 2175](https://github.com/libp2p/rust-libp2p/pull/2175)
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@ categories = ["network-programming", "asynchronous"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
libp2p-swarm = { version = "0.31.0", path = "../../swarm" }
|
libp2p-swarm = { version = "0.31.0", path = "../../swarm" }
|
||||||
libp2p-core = { version = "0.30.0", path = "../../core" }
|
libp2p-core = { version = "0.30.0", path = "../../core", default-features = false }
|
||||||
bytes = "1.0"
|
bytes = "1.0"
|
||||||
byteorder = "1.3.4"
|
byteorder = "1.3.4"
|
||||||
fnv = "1.0.7"
|
fnv = "1.0.7"
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
# 0.31.0 [unreleased]
|
# 0.31.0 [unreleased]
|
||||||
|
|
||||||
|
- Make default features of `libp2p-core` optional.
|
||||||
|
[PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181)
|
||||||
|
|
||||||
- Update dependencies.
|
- Update dependencies.
|
||||||
|
|
||||||
# 0.30.0 [2021-07-12]
|
# 0.30.0 [2021-07-12]
|
||||||
|
@ -11,7 +11,7 @@ categories = ["network-programming", "asynchronous"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
libp2p-core = { version = "0.30.0", path = "../../core" }
|
libp2p-core = { version = "0.30.0", path = "../../core", default-features = false }
|
||||||
libp2p-swarm = { version = "0.31.0", path = "../../swarm" }
|
libp2p-swarm = { version = "0.31.0", path = "../../swarm" }
|
||||||
log = "0.4.1"
|
log = "0.4.1"
|
||||||
prost = "0.8"
|
prost = "0.8"
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
# 0.32.0 [unreleased]
|
# 0.32.0 [unreleased]
|
||||||
|
|
||||||
|
- Make default features of `libp2p-core` optional.
|
||||||
|
[PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181)
|
||||||
|
|
||||||
- Update dependencies.
|
- Update dependencies.
|
||||||
|
|
||||||
- Introduce `KademliaStoreInserts` option, which allows to filter records (see
|
- Introduce `KademliaStoreInserts` option, which allows to filter records (see
|
||||||
|
@ -17,7 +17,7 @@ fnv = "1.0"
|
|||||||
asynchronous-codec = "0.6"
|
asynchronous-codec = "0.6"
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
libp2p-core = { version = "0.30.0", path = "../../core" }
|
libp2p-core = { version = "0.30.0", path = "../../core", default-features = false }
|
||||||
libp2p-swarm = { version = "0.31.0", path = "../../swarm" }
|
libp2p-swarm = { version = "0.31.0", path = "../../swarm" }
|
||||||
prost = "0.8"
|
prost = "0.8"
|
||||||
rand = "0.7.2"
|
rand = "0.7.2"
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
# 0.32.0 [unreleased]
|
# 0.32.0 [unreleased]
|
||||||
|
|
||||||
|
- Make default features of `libp2p-core` optional.
|
||||||
|
[PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181)
|
||||||
|
|
||||||
- Update dependencies.
|
- Update dependencies.
|
||||||
|
|
||||||
- Add support for IPv6. To enable set the multicast address
|
- Add support for IPv6. To enable set the multicast address
|
||||||
|
@ -16,7 +16,7 @@ dns-parser = "0.8.0"
|
|||||||
futures = "0.3.13"
|
futures = "0.3.13"
|
||||||
if-watch = "0.2.0"
|
if-watch = "0.2.0"
|
||||||
lazy_static = "1.4.0"
|
lazy_static = "1.4.0"
|
||||||
libp2p-core = { version = "0.30.0", path = "../../core" }
|
libp2p-core = { version = "0.30.0", path = "../../core", default-features = false }
|
||||||
libp2p-swarm = { version = "0.31.0", path = "../../swarm" }
|
libp2p-swarm = { version = "0.31.0", path = "../../swarm" }
|
||||||
log = "0.4.14"
|
log = "0.4.14"
|
||||||
rand = "0.8.3"
|
rand = "0.8.3"
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
# 0.31.0 [unreleased]
|
# 0.31.0 [unreleased]
|
||||||
|
|
||||||
|
- Make default features of `libp2p-core` optional.
|
||||||
|
[PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181)
|
||||||
|
|
||||||
- Update dependencies.
|
- Update dependencies.
|
||||||
|
|
||||||
- Don't close connection if ping protocol is unsupported by remote.
|
- Don't close connection if ping protocol is unsupported by remote.
|
||||||
|
@ -11,7 +11,7 @@ categories = ["network-programming", "asynchronous"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
libp2p-core = { version = "0.30.0", path = "../../core" }
|
libp2p-core = { version = "0.30.0", path = "../../core", default-features = false }
|
||||||
libp2p-swarm = { version = "0.31.0", path = "../../swarm" }
|
libp2p-swarm = { version = "0.31.0", path = "../../swarm" }
|
||||||
log = "0.4.1"
|
log = "0.4.1"
|
||||||
rand = "0.7.2"
|
rand = "0.7.2"
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
# 0.4.0 [unreleased]
|
# 0.4.0 [unreleased]
|
||||||
|
|
||||||
|
- Make default features of `libp2p-core` optional.
|
||||||
|
[PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181)
|
||||||
|
|
||||||
- Update dependencies.
|
- Update dependencies.
|
||||||
|
|
||||||
- Implement `Debug` for `RelayHandlerEvent` and `RelayHandlerIn`. See [PR 2183].
|
- Implement `Debug` for `RelayHandlerEvent` and `RelayHandlerIn`. See [PR 2183].
|
||||||
|
@ -14,7 +14,7 @@ asynchronous-codec = "0.6"
|
|||||||
bytes = "1"
|
bytes = "1"
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
futures-timer = "3"
|
futures-timer = "3"
|
||||||
libp2p-core = { version = "0.30.0", path = "../../core" }
|
libp2p-core = { version = "0.30.0", path = "../../core", default-features = false }
|
||||||
libp2p-swarm = { version = "0.31.0", path = "../../swarm" }
|
libp2p-swarm = { version = "0.31.0", path = "../../swarm" }
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
pin-project = "1"
|
pin-project = "1"
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
# 0.13.0 [unreleased]
|
# 0.13.0 [unreleased]
|
||||||
|
|
||||||
|
- Make default features of `libp2p-core` optional.
|
||||||
|
[PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181)
|
||||||
|
|
||||||
- Update dependencies.
|
- Update dependencies.
|
||||||
|
|
||||||
- Manually implement `Debug` for `RequestResponseHandlerEvent` and
|
- Manually implement `Debug` for `RequestResponseHandlerEvent` and
|
||||||
|
@ -13,7 +13,7 @@ categories = ["network-programming", "asynchronous"]
|
|||||||
async-trait = "0.1"
|
async-trait = "0.1"
|
||||||
bytes = "1"
|
bytes = "1"
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
libp2p-core = { version = "0.30.0", path = "../../core" }
|
libp2p-core = { version = "0.30.0", path = "../../core", default-features = false }
|
||||||
libp2p-swarm = { version = "0.31.0", path = "../../swarm" }
|
libp2p-swarm = { version = "0.31.0", path = "../../swarm" }
|
||||||
log = "0.4.11"
|
log = "0.4.11"
|
||||||
lru = "0.6"
|
lru = "0.6"
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
# 0.31.0 [unreleased]
|
# 0.31.0 [unreleased]
|
||||||
|
|
||||||
|
- Make default features of `libp2p-core` optional.
|
||||||
|
[PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181)
|
||||||
|
|
||||||
- Update dependencies.
|
- Update dependencies.
|
||||||
|
|
||||||
- Provide default implementations for all functions of `NetworkBehaviour`,
|
- Provide default implementations for all functions of `NetworkBehaviour`,
|
||||||
|
@ -12,7 +12,7 @@ categories = ["network-programming", "asynchronous"]
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
either = "1.6.0"
|
either = "1.6.0"
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
libp2p-core = { version = "0.30.0", path = "../core" }
|
libp2p-core = { version = "0.30.0", path = "../core", default-features = false }
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
rand = "0.7"
|
rand = "0.7"
|
||||||
smallvec = "1.6.1"
|
smallvec = "1.6.1"
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
# 0.30.0 [unreleased]
|
# 0.30.0 [unreleased]
|
||||||
|
|
||||||
|
- Make default features of `libp2p-core` optional.
|
||||||
|
[PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181)
|
||||||
|
|
||||||
- Update dependencies.
|
- Update dependencies.
|
||||||
|
|
||||||
# 0.29.0 [2021-07-12]
|
# 0.29.0 [2021-07-12]
|
||||||
|
@ -11,7 +11,7 @@ categories = ["network-programming", "asynchronous"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
libp2p-core = { version = "0.30.0", path = "../../core" }
|
libp2p-core = { version = "0.30.0", path = "../../core", default-features = false }
|
||||||
flate2 = "1.0"
|
flate2 = "1.0"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
# 0.30.0 [unreleased]
|
# 0.30.0 [unreleased]
|
||||||
|
|
||||||
|
- Make default features of `libp2p-core` optional.
|
||||||
|
[PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181)
|
||||||
|
|
||||||
- Update dependencies.
|
- Update dependencies.
|
||||||
|
|
||||||
# 0.29.0 [2021-07-12]
|
# 0.29.0 [2021-07-12]
|
||||||
|
@ -10,7 +10,7 @@ keywords = ["peer-to-peer", "libp2p", "networking"]
|
|||||||
categories = ["network-programming", "asynchronous"]
|
categories = ["network-programming", "asynchronous"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
libp2p-core = { version = "0.30.0", path = "../../core" }
|
libp2p-core = { version = "0.30.0", path = "../../core", default-features = false }
|
||||||
log = "0.4.1"
|
log = "0.4.1"
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
trust-dns-resolver = { version = "0.20", default-features = false, features = ["system-config"] }
|
trust-dns-resolver = { version = "0.20", default-features = false, features = ["system-config"] }
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
# 0.33.0 [unreleased]
|
# 0.33.0 [unreleased]
|
||||||
|
|
||||||
|
- Make default features of `libp2p-core` optional.
|
||||||
|
[PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181)
|
||||||
|
|
||||||
- Update dependencies.
|
- Update dependencies.
|
||||||
|
|
||||||
# 0.32.0 [2021-07-12]
|
# 0.32.0 [2021-07-12]
|
||||||
|
@ -12,7 +12,7 @@ bytes = "1"
|
|||||||
curve25519-dalek = "3.0.0"
|
curve25519-dalek = "3.0.0"
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
lazy_static = "1.2"
|
lazy_static = "1.2"
|
||||||
libp2p-core = { version = "0.30.0", path = "../../core" }
|
libp2p-core = { version = "0.30.0", path = "../../core", default-features = false }
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
prost = "0.8"
|
prost = "0.8"
|
||||||
rand = "0.8.3"
|
rand = "0.8.3"
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
# 0.30.0 [unreleased]
|
# 0.30.0 [unreleased]
|
||||||
|
|
||||||
|
- Make default features of `libp2p-core` optional.
|
||||||
|
[PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181)
|
||||||
|
|
||||||
- Update dependencies.
|
- Update dependencies.
|
||||||
|
|
||||||
# 0.29.0 [2021-07-12]
|
# 0.29.0 [2021-07-12]
|
||||||
|
@ -13,7 +13,7 @@ categories = ["network-programming", "asynchronous"]
|
|||||||
bytes = "1"
|
bytes = "1"
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
asynchronous-codec = "0.6"
|
asynchronous-codec = "0.6"
|
||||||
libp2p-core = { version = "0.30.0", path = "../../core" }
|
libp2p-core = { version = "0.30.0", path = "../../core", default-features = false }
|
||||||
log = "0.4.8"
|
log = "0.4.8"
|
||||||
prost = "0.8"
|
prost = "0.8"
|
||||||
unsigned-varint = { version = "0.7", features = ["asynchronous_codec"] }
|
unsigned-varint = { version = "0.7", features = ["asynchronous_codec"] }
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
# 0.30.0 [unreleased]
|
# 0.30.0 [unreleased]
|
||||||
|
|
||||||
|
- Make default features of `libp2p-core` optional.
|
||||||
|
[PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181)
|
||||||
|
|
||||||
- Update dependencies.
|
- Update dependencies.
|
||||||
|
|
||||||
# 0.29.0 [2021-07-12]
|
# 0.29.0 [2021-07-12]
|
||||||
|
@ -17,7 +17,7 @@ if-watch = { version = "0.2.0", optional = true }
|
|||||||
if-addrs = { version = "0.6.4", optional = true }
|
if-addrs = { version = "0.6.4", optional = true }
|
||||||
ipnet = "2.0.0"
|
ipnet = "2.0.0"
|
||||||
libc = "0.2.80"
|
libc = "0.2.80"
|
||||||
libp2p-core = { version = "0.30.0", path = "../../core" }
|
libp2p-core = { version = "0.30.0", path = "../../core", default-features = false }
|
||||||
log = "0.4.11"
|
log = "0.4.11"
|
||||||
socket2 = { version = "0.4.0", features = ["all"] }
|
socket2 = { version = "0.4.0", features = ["all"] }
|
||||||
tokio-crate = { package = "tokio", version = "1.0.1", default-features = false, features = ["net"], optional = true }
|
tokio-crate = { package = "tokio", version = "1.0.1", default-features = false, features = ["net"], optional = true }
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
# 0.30.0 [unreleased]
|
# 0.30.0 [unreleased]
|
||||||
|
|
||||||
|
- Make default features of `libp2p-core` optional.
|
||||||
|
[PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181)
|
||||||
|
|
||||||
- Update dependencies.
|
- Update dependencies.
|
||||||
|
|
||||||
# 0.29.0 [2021-07-12]
|
# 0.29.0 [2021-07-12]
|
||||||
|
@ -11,7 +11,7 @@ categories = ["network-programming", "asynchronous"]
|
|||||||
|
|
||||||
[target.'cfg(all(unix, not(target_os = "emscripten")))'.dependencies]
|
[target.'cfg(all(unix, not(target_os = "emscripten")))'.dependencies]
|
||||||
async-std = { version = "1.6.2", optional = true }
|
async-std = { version = "1.6.2", optional = true }
|
||||||
libp2p-core = { version = "0.30.0", path = "../../core" }
|
libp2p-core = { version = "0.30.0", path = "../../core", default-features = false }
|
||||||
log = "0.4.1"
|
log = "0.4.1"
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
tokio = { version = "1.0.1", default-features = false, features = ["net"], optional = true }
|
tokio = { version = "1.0.1", default-features = false, features = ["net"], optional = true }
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
# 0.30.0 [unreleased]
|
# 0.30.0 [unreleased]
|
||||||
|
|
||||||
|
- Make default features of `libp2p-core` optional.
|
||||||
|
[PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181)
|
||||||
|
|
||||||
- Update dependencies.
|
- Update dependencies.
|
||||||
|
|
||||||
# 0.29.0 [2021-07-12]
|
# 0.29.0 [2021-07-12]
|
||||||
|
@ -12,7 +12,7 @@ categories = ["network-programming", "asynchronous"]
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
js-sys = "0.3.50"
|
js-sys = "0.3.50"
|
||||||
libp2p-core = { version = "0.30.0", path = "../../core" }
|
libp2p-core = { version = "0.30.0", path = "../../core", default-features = false }
|
||||||
parity-send-wrapper = "0.1.0"
|
parity-send-wrapper = "0.1.0"
|
||||||
wasm-bindgen = "0.2.42"
|
wasm-bindgen = "0.2.42"
|
||||||
wasm-bindgen-futures = "0.4.4"
|
wasm-bindgen-futures = "0.4.4"
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
# 0.31.0 [unreleased]
|
# 0.31.0 [unreleased]
|
||||||
|
|
||||||
|
- Make default features of `libp2p-core` optional.
|
||||||
|
[PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181)
|
||||||
|
|
||||||
- Update dependencies.
|
- Update dependencies.
|
||||||
|
|
||||||
# 0.30.0 [2021-07-12]
|
# 0.30.0 [2021-07-12]
|
||||||
|
@ -13,7 +13,7 @@ categories = ["network-programming", "asynchronous"]
|
|||||||
futures-rustls = "0.21"
|
futures-rustls = "0.21"
|
||||||
either = "1.5.3"
|
either = "1.5.3"
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
libp2p-core = { version = "0.30.0", path = "../../core" }
|
libp2p-core = { version = "0.30.0", path = "../../core", default-features = false }
|
||||||
log = "0.4.8"
|
log = "0.4.8"
|
||||||
quicksink = "0.1"
|
quicksink = "0.1"
|
||||||
rw-stream-sink = "0.2.0"
|
rw-stream-sink = "0.2.0"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user