mirror of
https://github.com/fluencelabs/rust-libp2p
synced 2025-06-13 01:51:23 +00:00
*: Make libp2p-core default features optional (#2181)
Co-authored-by: Max Inden <mail@max-inden.de>
This commit is contained in:
@ -1,5 +1,8 @@
|
||||
# 0.31.0 [unreleased]
|
||||
|
||||
- Make default features of `libp2p-core` optional.
|
||||
[PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181)
|
||||
|
||||
- Update dependencies.
|
||||
|
||||
# 0.30.0 [2021-07-12]
|
||||
|
@ -13,7 +13,7 @@ categories = ["network-programming", "asynchronous"]
|
||||
cuckoofilter = "0.5.0"
|
||||
fnv = "1.0"
|
||||
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" }
|
||||
log = "0.4"
|
||||
prost = "0.8"
|
||||
|
@ -1,5 +1,8 @@
|
||||
# 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.
|
||||
[PR 2175](https://github.com/libp2p/rust-libp2p/pull/2175)
|
||||
|
||||
|
@ -11,7 +11,7 @@ categories = ["network-programming", "asynchronous"]
|
||||
|
||||
[dependencies]
|
||||
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"
|
||||
byteorder = "1.3.4"
|
||||
fnv = "1.0.7"
|
||||
|
@ -1,5 +1,8 @@
|
||||
# 0.31.0 [unreleased]
|
||||
|
||||
- Make default features of `libp2p-core` optional.
|
||||
[PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181)
|
||||
|
||||
- Update dependencies.
|
||||
|
||||
# 0.30.0 [2021-07-12]
|
||||
|
@ -11,7 +11,7 @@ categories = ["network-programming", "asynchronous"]
|
||||
|
||||
[dependencies]
|
||||
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" }
|
||||
log = "0.4.1"
|
||||
prost = "0.8"
|
||||
|
@ -1,5 +1,8 @@
|
||||
# 0.32.0 [unreleased]
|
||||
|
||||
- Make default features of `libp2p-core` optional.
|
||||
[PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181)
|
||||
|
||||
- Update dependencies.
|
||||
|
||||
- Introduce `KademliaStoreInserts` option, which allows to filter records (see
|
||||
|
@ -17,7 +17,7 @@ fnv = "1.0"
|
||||
asynchronous-codec = "0.6"
|
||||
futures = "0.3.1"
|
||||
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" }
|
||||
prost = "0.8"
|
||||
rand = "0.7.2"
|
||||
|
@ -1,5 +1,8 @@
|
||||
# 0.32.0 [unreleased]
|
||||
|
||||
- Make default features of `libp2p-core` optional.
|
||||
[PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181)
|
||||
|
||||
- Update dependencies.
|
||||
|
||||
- Add support for IPv6. To enable set the multicast address
|
||||
|
@ -16,7 +16,7 @@ dns-parser = "0.8.0"
|
||||
futures = "0.3.13"
|
||||
if-watch = "0.2.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" }
|
||||
log = "0.4.14"
|
||||
rand = "0.8.3"
|
||||
|
@ -1,5 +1,8 @@
|
||||
# 0.31.0 [unreleased]
|
||||
|
||||
- Make default features of `libp2p-core` optional.
|
||||
[PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181)
|
||||
|
||||
- Update dependencies.
|
||||
|
||||
- Don't close connection if ping protocol is unsupported by remote.
|
||||
|
@ -11,7 +11,7 @@ categories = ["network-programming", "asynchronous"]
|
||||
|
||||
[dependencies]
|
||||
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" }
|
||||
log = "0.4.1"
|
||||
rand = "0.7.2"
|
||||
|
@ -1,5 +1,8 @@
|
||||
# 0.4.0 [unreleased]
|
||||
|
||||
- Make default features of `libp2p-core` optional.
|
||||
[PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181)
|
||||
|
||||
- Update dependencies.
|
||||
|
||||
- Implement `Debug` for `RelayHandlerEvent` and `RelayHandlerIn`. See [PR 2183].
|
||||
|
@ -14,7 +14,7 @@ asynchronous-codec = "0.6"
|
||||
bytes = "1"
|
||||
futures = "0.3.1"
|
||||
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" }
|
||||
log = "0.4"
|
||||
pin-project = "1"
|
||||
|
@ -1,5 +1,8 @@
|
||||
# 0.13.0 [unreleased]
|
||||
|
||||
- Make default features of `libp2p-core` optional.
|
||||
[PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181)
|
||||
|
||||
- Update dependencies.
|
||||
|
||||
- Manually implement `Debug` for `RequestResponseHandlerEvent` and
|
||||
|
@ -13,7 +13,7 @@ categories = ["network-programming", "asynchronous"]
|
||||
async-trait = "0.1"
|
||||
bytes = "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" }
|
||||
log = "0.4.11"
|
||||
lru = "0.6"
|
||||
|
Reference in New Issue
Block a user