mirror of
https://github.com/fluencelabs/rust-libp2p
synced 2025-05-02 14:12:18 +00:00
*: Update multihash and multiaddr (#2469)
Co-authored-by: Max Inden <mail@max-inden.de>
This commit is contained in:
parent
1b6ffb1164
commit
a2c93fc766
26
CHANGELOG.md
26
CHANGELOG.md
@ -45,9 +45,29 @@
|
|||||||
## Version 0.43.0 [unreleased]
|
## Version 0.43.0 [unreleased]
|
||||||
|
|
||||||
- Update individual crates.
|
- Update individual crates.
|
||||||
- `libp2p-core`
|
- Update to `libp2p-autonat` `v0.2.0`.
|
||||||
- `libp2p-gossipsub`
|
- Update to `libp2p-core` `v0.32.0`.
|
||||||
- `libp2p-metrics`
|
- Update to `libp2p-deflate` `v0.32.0`.
|
||||||
|
- Update to `libp2p-dns` `v0.32.0`.
|
||||||
|
- Update to `libp2p-floodsub` `v0.34.0`.
|
||||||
|
- Update to `libp2p-gossipsub` `v0.36.0`.
|
||||||
|
- Update to `libp2p-identify` `v0.34.0`.
|
||||||
|
- Update to `libp2p-kad` `v0.35.0`.
|
||||||
|
- Update to `libp2p-mdns` `v0.35.0`.
|
||||||
|
- Update to `libp2p-metrics` `v0.4.0`.
|
||||||
|
- Update to `libp2p-mplex` `v0.32.0`.
|
||||||
|
- Update to `libp2p-noise` `v0.35.0`.
|
||||||
|
- Update to `libp2p-ping` `v0.34.0`.
|
||||||
|
- Update to `libp2p-plaintext` `v0.32.0`.
|
||||||
|
- Update to `libp2p-relay` `v0.7.0`.
|
||||||
|
- Update to `libp2p-rendezvous` `v0.4.0`.
|
||||||
|
- Update to `libp2p-request-response` `v0.16.0`.
|
||||||
|
- Update to `libp2p-swarm` `v0.34.0`.
|
||||||
|
- Update to `libp2p-tcp` `v0.32.0`.
|
||||||
|
- Update to `libp2p-uds` `v0.32.0`.
|
||||||
|
- Update to `libp2p-wasm-ext` `v0.32.0`.
|
||||||
|
- Update to `libp2p-websocket` `v0.34.0`.
|
||||||
|
- Update to `libp2p-yamux` `v0.36.0`.
|
||||||
|
|
||||||
## Version 0.42.1 [2022-02-02]
|
## Version 0.42.1 [2022-02-02]
|
||||||
|
|
||||||
|
44
Cargo.toml
44
Cargo.toml
@ -76,38 +76,38 @@ getrandom = "0.2.3" # Explicit dependency to be used in `wasm-bindgen` feature
|
|||||||
instant = "0.1.11" # Explicit dependency to be used in `wasm-bindgen` feature
|
instant = "0.1.11" # Explicit dependency to be used in `wasm-bindgen` feature
|
||||||
lazy_static = "1.2"
|
lazy_static = "1.2"
|
||||||
|
|
||||||
libp2p-autonat = { version = "0.1.0", path = "protocols/autonat", optional = true }
|
libp2p-autonat = { version = "0.2.0", path = "protocols/autonat", optional = true }
|
||||||
libp2p-core = { version = "0.31.1", path = "core", default-features = false }
|
libp2p-core = { version = "0.32.0", path = "core", default-features = false }
|
||||||
libp2p-floodsub = { version = "0.33.0", path = "protocols/floodsub", optional = true }
|
libp2p-floodsub = { version = "0.34.0", path = "protocols/floodsub", optional = true }
|
||||||
libp2p-gossipsub = { version = "0.36.0", path = "./protocols/gossipsub", optional = true }
|
libp2p-gossipsub = { version = "0.36.0", path = "./protocols/gossipsub", optional = true }
|
||||||
libp2p-identify = { version = "0.33.0", path = "protocols/identify", optional = true }
|
libp2p-identify = { version = "0.34.0", path = "protocols/identify", optional = true }
|
||||||
libp2p-kad = { version = "0.34.0", path = "protocols/kad", optional = true }
|
libp2p-kad = { version = "0.35.0", path = "protocols/kad", optional = true }
|
||||||
libp2p-metrics = { version = "0.4.0", path = "misc/metrics", optional = true }
|
libp2p-metrics = { version = "0.4.0", path = "misc/metrics", optional = true }
|
||||||
libp2p-mplex = { version = "0.31.0", path = "muxers/mplex", optional = true }
|
libp2p-mplex = { version = "0.32.0", path = "muxers/mplex", optional = true }
|
||||||
libp2p-noise = { version = "0.34.0", path = "transports/noise", optional = true }
|
libp2p-noise = { version = "0.35.0", path = "transports/noise", optional = true }
|
||||||
libp2p-ping = { version = "0.33.0", path = "protocols/ping", optional = true }
|
libp2p-ping = { version = "0.34.0", path = "protocols/ping", optional = true }
|
||||||
libp2p-plaintext = { version = "0.31.0", path = "transports/plaintext", optional = true }
|
libp2p-plaintext = { version = "0.32.0", path = "transports/plaintext", optional = true }
|
||||||
libp2p-pnet = { version = "0.22.0", path = "transports/pnet", optional = true }
|
libp2p-pnet = { version = "0.22.0", path = "transports/pnet", optional = true }
|
||||||
libp2p-relay = { version = "0.6.1", path = "protocols/relay", optional = true }
|
libp2p-relay = { version = "0.7.0", path = "protocols/relay", optional = true }
|
||||||
libp2p-rendezvous = { version = "0.3.0", path = "protocols/rendezvous", optional = true }
|
libp2p-rendezvous = { version = "0.4.0", path = "protocols/rendezvous", optional = true }
|
||||||
libp2p-request-response = { version = "0.15.0", path = "protocols/request-response", optional = true }
|
libp2p-request-response = { version = "0.16.0", path = "protocols/request-response", optional = true }
|
||||||
libp2p-swarm = { version = "0.33.0", path = "swarm" }
|
libp2p-swarm = { version = "0.34.0", path = "swarm" }
|
||||||
libp2p-swarm-derive = { version = "0.26.1", path = "swarm-derive" }
|
libp2p-swarm-derive = { version = "0.26.1", path = "swarm-derive" }
|
||||||
libp2p-uds = { version = "0.31.0", path = "transports/uds", optional = true }
|
libp2p-uds = { version = "0.32.0", path = "transports/uds", optional = true }
|
||||||
libp2p-wasm-ext = { version = "0.31.0", path = "transports/wasm-ext", default-features = false, optional = true }
|
libp2p-wasm-ext = { version = "0.32.0", path = "transports/wasm-ext", default-features = false, optional = true }
|
||||||
libp2p-yamux = { version = "0.35.0", path = "muxers/yamux", optional = true }
|
libp2p-yamux = { version = "0.36.0", path = "muxers/yamux", optional = true }
|
||||||
multiaddr = { version = "0.13.0" }
|
multiaddr = { version = "0.14.0" }
|
||||||
parking_lot = "0.11.0"
|
parking_lot = "0.11.0"
|
||||||
pin-project = "1.0.0"
|
pin-project = "1.0.0"
|
||||||
rand = "0.7.3" # Explicit dependency to be used in `wasm-bindgen` feature
|
rand = "0.7.3" # Explicit dependency to be used in `wasm-bindgen` feature
|
||||||
smallvec = "1.6.1"
|
smallvec = "1.6.1"
|
||||||
|
|
||||||
[target.'cfg(not(any(target_os = "emscripten", target_os = "wasi", target_os = "unknown")))'.dependencies]
|
[target.'cfg(not(any(target_os = "emscripten", target_os = "wasi", target_os = "unknown")))'.dependencies]
|
||||||
libp2p-deflate = { version = "0.31.0", path = "transports/deflate", optional = true }
|
libp2p-deflate = { version = "0.32.0", path = "transports/deflate", optional = true }
|
||||||
libp2p-dns = { version = "0.31.0", path = "transports/dns", optional = true, default-features = false }
|
libp2p-dns = { version = "0.32.0", path = "transports/dns", optional = true, default-features = false }
|
||||||
libp2p-mdns = { version = "0.34.0", path = "protocols/mdns", optional = true }
|
libp2p-mdns = { version = "0.35.0", path = "protocols/mdns", optional = true }
|
||||||
libp2p-tcp = { version = "0.31.1", path = "transports/tcp", default-features = false, optional = true }
|
libp2p-tcp = { version = "0.32.0", path = "transports/tcp", default-features = false, optional = true }
|
||||||
libp2p-websocket = { version = "0.33.0", path = "transports/websocket", optional = true }
|
libp2p-websocket = { version = "0.34.0", path = "transports/websocket", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
async-std = { version = "1.6.2", features = ["attributes"] }
|
async-std = { version = "1.6.2", features = ["attributes"] }
|
||||||
|
@ -1,4 +1,8 @@
|
|||||||
# 0.31.1 [unreleased]
|
# 0.32.0 [unreleased]
|
||||||
|
|
||||||
|
- Update to `multiaddr` `v0.14.0`.
|
||||||
|
|
||||||
|
- Update to `multihash` `v0.16.0`.
|
||||||
|
|
||||||
- Implement `Display` on `DialError`. See [PR 2456].
|
- Implement `Display` on `DialError`. See [PR 2456].
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@ name = "libp2p-core"
|
|||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.56.1"
|
rust-version = "1.56.1"
|
||||||
description = "Core traits and structs of libp2p"
|
description = "Core traits and structs of libp2p"
|
||||||
version = "0.31.1"
|
version = "0.32.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/libp2p/rust-libp2p"
|
repository = "https://github.com/libp2p/rust-libp2p"
|
||||||
@ -22,8 +22,8 @@ instant = "0.1.11"
|
|||||||
lazy_static = "1.2"
|
lazy_static = "1.2"
|
||||||
libsecp256k1 = { version = "0.7.0", optional = true }
|
libsecp256k1 = { version = "0.7.0", optional = true }
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
multiaddr = { version = "0.13.0" }
|
multiaddr = { version = "0.14.0" }
|
||||||
multihash = { version = "0.14", default-features = false, features = ["std", "multihash-impl", "identity", "sha2"] }
|
multihash = { version = "0.16", default-features = false, features = ["std", "multihash-impl", "identity", "sha2"] }
|
||||||
multistream-select = { version = "0.11", path = "../misc/multistream-select" }
|
multistream-select = { version = "0.11", path = "../misc/multistream-select" }
|
||||||
p256 = { version = "0.10.0", default-features = false, features = ["ecdsa"], optional = true }
|
p256 = { version = "0.10.0", default-features = false, features = ["ecdsa"], optional = true }
|
||||||
parking_lot = "0.11.0"
|
parking_lot = "0.11.0"
|
||||||
@ -51,7 +51,7 @@ libp2p-noise = { path = "../transports/noise" }
|
|||||||
libp2p-tcp = { path = "../transports/tcp" }
|
libp2p-tcp = { path = "../transports/tcp" }
|
||||||
serde_json = "1.0"
|
serde_json = "1.0"
|
||||||
rmp-serde = "1.0"
|
rmp-serde = "1.0"
|
||||||
multihash = { version = "0.14", default-features = false, features = ["arb"] }
|
multihash = { version = "0.16", default-features = false, features = ["arb"] }
|
||||||
quickcheck = "0.9.0"
|
quickcheck = "0.9.0"
|
||||||
rand07 = { package = "rand", version = "0.7" }
|
rand07 = { package = "rand", version = "0.7" }
|
||||||
|
|
||||||
|
@ -1,5 +1,17 @@
|
|||||||
# 0.4.0 [unreleased]
|
# 0.4.0 [unreleased]
|
||||||
|
|
||||||
|
- Update to `libp2p-core` `v0.32.0`.
|
||||||
|
|
||||||
|
- Update to `libp2p-swarm` `v0.34.0`.
|
||||||
|
|
||||||
|
- Update to `libp2p-ping` `v0.34.0`.
|
||||||
|
|
||||||
|
- Update to `libp2p-identify` `v0.34.0`.
|
||||||
|
|
||||||
|
- Update to `libp2p-relay` `v0.7.0`.
|
||||||
|
|
||||||
|
- Update to `libp2p-kad` `v0.35.0`.
|
||||||
|
|
||||||
- Move from `open-metrics-client` to `prometheus-client` (see [PR 2442]).
|
- Move from `open-metrics-client` to `prometheus-client` (see [PR 2442]).
|
||||||
|
|
||||||
[PR 2442]: https://github.com/libp2p/rust-libp2p/pull/2442
|
[PR 2442]: https://github.com/libp2p/rust-libp2p/pull/2442
|
||||||
|
@ -18,13 +18,13 @@ ping = ["libp2p-ping"]
|
|||||||
relay = ["libp2p-relay"]
|
relay = ["libp2p-relay"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
libp2p-core = { version = "0.31.0", path = "../../core", default-features = false }
|
libp2p-core = { version = "0.32.0", path = "../../core", default-features = false }
|
||||||
libp2p-gossipsub = { version = "0.36.0", path = "../../protocols/gossipsub", optional = true }
|
libp2p-gossipsub = { version = "0.36.0", path = "../../protocols/gossipsub", optional = true }
|
||||||
libp2p-identify = { version = "0.33.0", path = "../../protocols/identify", optional = true }
|
libp2p-identify = { version = "0.34.0", path = "../../protocols/identify", optional = true }
|
||||||
libp2p-kad = { version = "0.34.0", path = "../../protocols/kad", optional = true }
|
libp2p-kad = { version = "0.35.0", path = "../../protocols/kad", optional = true }
|
||||||
libp2p-ping = { version = "0.33.0", path = "../../protocols/ping", optional = true }
|
libp2p-ping = { version = "0.34.0", path = "../../protocols/ping", optional = true }
|
||||||
libp2p-relay = { version = "0.6.0", path = "../../protocols/relay", optional = true }
|
libp2p-relay = { version = "0.7.0", path = "../../protocols/relay", optional = true }
|
||||||
libp2p-swarm = { version = "0.33.0", path = "../../swarm" }
|
libp2p-swarm = { version = "0.34.0", path = "../../swarm" }
|
||||||
prometheus-client = "0.15.0"
|
prometheus-client = "0.15.0"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
@ -12,5 +12,5 @@ categories = ["network-programming", "asynchronous"]
|
|||||||
publish = false
|
publish = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
libp2p-core = { path = "../../core", default-features = false, version = "0.31.0"}
|
libp2p-core = { path = "../../core", default-features = false, version = "0.32.0"}
|
||||||
num_cpus = "1.8"
|
num_cpus = "1.8"
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
# 0.32.0 [unreleased]
|
||||||
|
|
||||||
|
- Update to `libp2p-core` `v0.32.0`.
|
||||||
|
|
||||||
# 0.31.0 [2022-01-27]
|
# 0.31.0 [2022-01-27]
|
||||||
|
|
||||||
- Update dependencies.
|
- Update dependencies.
|
||||||
|
@ -3,7 +3,7 @@ name = "libp2p-mplex"
|
|||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.56.1"
|
rust-version = "1.56.1"
|
||||||
description = "Mplex multiplexing protocol for libp2p"
|
description = "Mplex multiplexing protocol for libp2p"
|
||||||
version = "0.31.0"
|
version = "0.32.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/libp2p/rust-libp2p"
|
repository = "https://github.com/libp2p/rust-libp2p"
|
||||||
@ -14,7 +14,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.31.0", path = "../../core", default-features = false }
|
libp2p-core = { version = "0.32.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,3 +1,7 @@
|
|||||||
|
# 0.36.0 [unreleased]
|
||||||
|
|
||||||
|
- Update to `libp2p-core` `v0.32.0`.
|
||||||
|
|
||||||
# 0.35.0 [2022-01-27]
|
# 0.35.0 [2022-01-27]
|
||||||
|
|
||||||
- Update dependencies.
|
- Update dependencies.
|
||||||
|
@ -3,7 +3,7 @@ name = "libp2p-yamux"
|
|||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.56.1"
|
rust-version = "1.56.1"
|
||||||
description = "Yamux multiplexing protocol for libp2p"
|
description = "Yamux multiplexing protocol for libp2p"
|
||||||
version = "0.35.0"
|
version = "0.36.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/libp2p/rust-libp2p"
|
repository = "https://github.com/libp2p/rust-libp2p"
|
||||||
@ -12,7 +12,7 @@ categories = ["network-programming", "asynchronous"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
libp2p-core = { version = "0.31.0", path = "../../core", default-features = false }
|
libp2p-core = { version = "0.32.0", path = "../../core", default-features = false }
|
||||||
parking_lot = "0.11"
|
parking_lot = "0.11"
|
||||||
thiserror = "1.0"
|
thiserror = "1.0"
|
||||||
yamux = "0.10.0"
|
yamux = "0.10.0"
|
||||||
|
@ -1,3 +1,11 @@
|
|||||||
|
# 0.2.0 [unreleased]
|
||||||
|
|
||||||
|
- Update to `libp2p-core` `v0.32.0`.
|
||||||
|
|
||||||
|
- Update to `libp2p-swarm` `v0.34.0`.
|
||||||
|
|
||||||
|
- Update to `libp2p-request-response` `v0.16.0`.
|
||||||
|
|
||||||
# 0.1.0 [2022-01-27]
|
# 0.1.0 [2022-01-27]
|
||||||
|
|
||||||
- Initial release.
|
- Initial release.
|
@ -3,7 +3,7 @@ name = "libp2p-autonat"
|
|||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.56.1"
|
rust-version = "1.56.1"
|
||||||
description = "NAT and firewall detection for libp2p"
|
description = "NAT and firewall detection for libp2p"
|
||||||
version = "0.1.0"
|
version = "0.2.0"
|
||||||
authors = ["David Craven <david@craven.ch>", "Elena Frank <elena.frank@protonmail.com>"]
|
authors = ["David Craven <david@craven.ch>", "Elena Frank <elena.frank@protonmail.com>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/libp2p/rust-libp2p"
|
repository = "https://github.com/libp2p/rust-libp2p"
|
||||||
@ -18,9 +18,9 @@ async-trait = "0.1"
|
|||||||
futures = "0.3"
|
futures = "0.3"
|
||||||
futures-timer = "3.0"
|
futures-timer = "3.0"
|
||||||
instant = "0.1"
|
instant = "0.1"
|
||||||
libp2p-core = { version = "0.31.0", path = "../../core", default-features = false }
|
libp2p-core = { version = "0.32.0", path = "../../core", default-features = false }
|
||||||
libp2p-swarm = { version = "0.33.0", path = "../../swarm" }
|
libp2p-swarm = { version = "0.34.0", path = "../../swarm" }
|
||||||
libp2p-request-response = { version = "0.15.0", path = "../request-response" }
|
libp2p-request-response = { version = "0.16.0", path = "../request-response" }
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
rand = "0.8"
|
rand = "0.8"
|
||||||
prost = "0.9"
|
prost = "0.9"
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
# 0.34.0 [unreleased]
|
||||||
|
|
||||||
|
- Update to `libp2p-core` `v0.32.0`.
|
||||||
|
|
||||||
|
- Update to `libp2p-swarm` `v0.34.0`.
|
||||||
|
|
||||||
# 0.33.0 [2022-01-27]
|
# 0.33.0 [2022-01-27]
|
||||||
|
|
||||||
- Update dependencies.
|
- Update dependencies.
|
||||||
|
@ -3,7 +3,7 @@ name = "libp2p-floodsub"
|
|||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.56.1"
|
rust-version = "1.56.1"
|
||||||
description = "Floodsub protocol for libp2p"
|
description = "Floodsub protocol for libp2p"
|
||||||
version = "0.33.0"
|
version = "0.34.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/libp2p/rust-libp2p"
|
repository = "https://github.com/libp2p/rust-libp2p"
|
||||||
@ -14,8 +14,8 @@ 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.31.0", path = "../../core", default-features = false }
|
libp2p-core = { version = "0.32.0", path = "../../core", default-features = false }
|
||||||
libp2p-swarm = { version = "0.33.0", path = "../../swarm" }
|
libp2p-swarm = { version = "0.34.0", path = "../../swarm" }
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
prost = "0.9"
|
prost = "0.9"
|
||||||
rand = "0.7"
|
rand = "0.7"
|
||||||
|
@ -1,5 +1,9 @@
|
|||||||
# 0.36.0 [unreleased]
|
# 0.36.0 [unreleased]
|
||||||
|
|
||||||
|
- Update to `libp2p-core` `v0.32.0`.
|
||||||
|
|
||||||
|
- Update to `libp2p-swarm` `v0.34.0`.
|
||||||
|
|
||||||
- Move from `open-metrics-client` to `prometheus-client` (see [PR 2442]).
|
- Move from `open-metrics-client` to `prometheus-client` (see [PR 2442]).
|
||||||
|
|
||||||
[PR 2442]: https://github.com/libp2p/rust-libp2p/pull/2442
|
[PR 2442]: https://github.com/libp2p/rust-libp2p/pull/2442
|
||||||
|
@ -11,8 +11,8 @@ keywords = ["peer-to-peer", "libp2p", "networking"]
|
|||||||
categories = ["network-programming", "asynchronous"]
|
categories = ["network-programming", "asynchronous"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
libp2p-swarm = { version = "0.33.0", path = "../../swarm" }
|
libp2p-swarm = { version = "0.34.0", path = "../../swarm" }
|
||||||
libp2p-core = { version = "0.31.0", path = "../../core", default-features = false }
|
libp2p-core = { version = "0.32.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,3 +1,9 @@
|
|||||||
|
# 0.34.0 [unreleased]
|
||||||
|
|
||||||
|
- Update to `libp2p-core` `v0.32.0`.
|
||||||
|
|
||||||
|
- Update to `libp2p-swarm` `v0.34.0`.
|
||||||
|
|
||||||
# 0.33.0 [2022-01-27]
|
# 0.33.0 [2022-01-27]
|
||||||
|
|
||||||
- Update dependencies.
|
- Update dependencies.
|
||||||
|
@ -3,7 +3,7 @@ name = "libp2p-identify"
|
|||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.56.1"
|
rust-version = "1.56.1"
|
||||||
description = "Nodes identifcation protocol for libp2p"
|
description = "Nodes identifcation protocol for libp2p"
|
||||||
version = "0.33.0"
|
version = "0.34.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/libp2p/rust-libp2p"
|
repository = "https://github.com/libp2p/rust-libp2p"
|
||||||
@ -13,8 +13,8 @@ categories = ["network-programming", "asynchronous"]
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
futures-timer = "3.0.2"
|
futures-timer = "3.0.2"
|
||||||
libp2p-core = { version = "0.31.0", path = "../../core", default-features = false }
|
libp2p-core = { version = "0.32.0", path = "../../core", default-features = false }
|
||||||
libp2p-swarm = { version = "0.33.0", path = "../../swarm" }
|
libp2p-swarm = { version = "0.34.0", path = "../../swarm" }
|
||||||
log = "0.4.1"
|
log = "0.4.1"
|
||||||
lru = "0.7.2"
|
lru = "0.7.2"
|
||||||
prost = "0.9"
|
prost = "0.9"
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
# 0.35.0 [unreleased]
|
||||||
|
|
||||||
|
- Update to `libp2p-core` `v0.32.0`.
|
||||||
|
|
||||||
|
- Update to `libp2p-swarm` `v0.34.0`.
|
||||||
|
|
||||||
# 0.34.0 [2022-01-27]
|
# 0.34.0 [2022-01-27]
|
||||||
|
|
||||||
- Update dependencies.
|
- Update dependencies.
|
||||||
|
@ -3,7 +3,7 @@ name = "libp2p-kad"
|
|||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.56.1"
|
rust-version = "1.56.1"
|
||||||
description = "Kademlia protocol for libp2p"
|
description = "Kademlia protocol for libp2p"
|
||||||
version = "0.34.0"
|
version = "0.35.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/libp2p/rust-libp2p"
|
repository = "https://github.com/libp2p/rust-libp2p"
|
||||||
@ -18,8 +18,8 @@ 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.31.0", path = "../../core", default-features = false }
|
libp2p-core = { version = "0.32.0", path = "../../core", default-features = false }
|
||||||
libp2p-swarm = { version = "0.33.0", path = "../../swarm" }
|
libp2p-swarm = { version = "0.34.0", path = "../../swarm" }
|
||||||
prost = "0.9"
|
prost = "0.9"
|
||||||
rand = "0.7.2"
|
rand = "0.7.2"
|
||||||
sha2 = "0.10.0"
|
sha2 = "0.10.0"
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
# 0.35.0 [unreleased]
|
||||||
|
|
||||||
|
- Update to `libp2p-core` `v0.32.0`.
|
||||||
|
|
||||||
|
- Update to `libp2p-swarm` `v0.34.0`.
|
||||||
|
|
||||||
# 0.34.0 [2022-01-27]
|
# 0.34.0 [2022-01-27]
|
||||||
|
|
||||||
- Update dependencies.
|
- Update dependencies.
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
name = "libp2p-mdns"
|
name = "libp2p-mdns"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.56.1"
|
rust-version = "1.56.1"
|
||||||
version = "0.34.0"
|
version = "0.35.0"
|
||||||
description = "Implementation of the libp2p mDNS discovery method"
|
description = "Implementation of the libp2p mDNS discovery method"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
@ -17,8 +17,8 @@ dns-parser = "0.8.0"
|
|||||||
futures = "0.3.13"
|
futures = "0.3.13"
|
||||||
if-watch = "1.0.0"
|
if-watch = "1.0.0"
|
||||||
lazy_static = "1.4.0"
|
lazy_static = "1.4.0"
|
||||||
libp2p-core = { version = "0.31.0", path = "../../core", default-features = false }
|
libp2p-core = { version = "0.32.0", path = "../../core", default-features = false }
|
||||||
libp2p-swarm = { version = "0.33.0", path = "../../swarm" }
|
libp2p-swarm = { version = "0.34.0", path = "../../swarm" }
|
||||||
log = "0.4.14"
|
log = "0.4.14"
|
||||||
rand = "0.8.3"
|
rand = "0.8.3"
|
||||||
smallvec = "1.6.1"
|
smallvec = "1.6.1"
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
# 0.34.0 [unreleased]
|
||||||
|
|
||||||
|
- Update to `libp2p-core` `v0.32.0`.
|
||||||
|
|
||||||
|
- Update to `libp2p-swarm` `v0.34.0`.
|
||||||
|
|
||||||
# 0.33.0 [2022-01-27]
|
# 0.33.0 [2022-01-27]
|
||||||
|
|
||||||
- Update dependencies.
|
- Update dependencies.
|
||||||
|
@ -3,7 +3,7 @@ name = "libp2p-ping"
|
|||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.56.1"
|
rust-version = "1.56.1"
|
||||||
description = "Ping protocol for libp2p"
|
description = "Ping protocol for libp2p"
|
||||||
version = "0.33.0"
|
version = "0.34.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/libp2p/rust-libp2p"
|
repository = "https://github.com/libp2p/rust-libp2p"
|
||||||
@ -14,8 +14,8 @@ categories = ["network-programming", "asynchronous"]
|
|||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
futures-timer = "3.0.2"
|
futures-timer = "3.0.2"
|
||||||
instant = "0.1.11"
|
instant = "0.1.11"
|
||||||
libp2p-core = { version = "0.31.0", path = "../../core", default-features = false }
|
libp2p-core = { version = "0.32.0", path = "../../core", default-features = false }
|
||||||
libp2p-swarm = { version = "0.33.0", path = "../../swarm" }
|
libp2p-swarm = { version = "0.34.0", path = "../../swarm" }
|
||||||
log = "0.4.1"
|
log = "0.4.1"
|
||||||
rand = "0.7.2"
|
rand = "0.7.2"
|
||||||
void = "1.0"
|
void = "1.0"
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
# 0.7.0 [unreleased]
|
||||||
|
|
||||||
|
- Update to `libp2p-core` `v0.32.0`.
|
||||||
|
|
||||||
|
- Update to `libp2p-swarm` `v0.34.0`.
|
||||||
|
|
||||||
# 0.6.1 [2022-02-02]
|
# 0.6.1 [2022-02-02]
|
||||||
|
|
||||||
- Remove empty peer entries in `reservations` `HashMap`. See [PR 2464].
|
- Remove empty peer entries in `reservations` `HashMap`. See [PR 2464].
|
||||||
|
@ -3,7 +3,7 @@ name = "libp2p-relay"
|
|||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.56.1"
|
rust-version = "1.56.1"
|
||||||
description = "Communications relaying for libp2p"
|
description = "Communications relaying for libp2p"
|
||||||
version = "0.6.1"
|
version = "0.7.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>", "Max Inden <mail@max-inden.de>"]
|
authors = ["Parity Technologies <admin@parity.io>", "Max Inden <mail@max-inden.de>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/libp2p/rust-libp2p"
|
repository = "https://github.com/libp2p/rust-libp2p"
|
||||||
@ -17,8 +17,8 @@ either = "1.6.0"
|
|||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
futures-timer = "3"
|
futures-timer = "3"
|
||||||
instant = "0.1.11"
|
instant = "0.1.11"
|
||||||
libp2p-core = { version = "0.31.0", path = "../../core", default-features = false }
|
libp2p-core = { version = "0.32.0", path = "../../core", default-features = false }
|
||||||
libp2p-swarm = { version = "0.33.0", path = "../../swarm" }
|
libp2p-swarm = { version = "0.34.0", path = "../../swarm" }
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
pin-project = "1"
|
pin-project = "1"
|
||||||
prost = "0.9"
|
prost = "0.9"
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
# 0.4.0 [unreleased]
|
||||||
|
|
||||||
|
- Update to `libp2p-core` `v0.32.0`.
|
||||||
|
|
||||||
|
- Update to `libp2p-swarm` `v0.34.0`.
|
||||||
|
|
||||||
# 0.3.0 [2022-01-27]
|
# 0.3.0 [2022-01-27]
|
||||||
|
|
||||||
- Update dependencies.
|
- Update dependencies.
|
||||||
|
@ -3,7 +3,7 @@ name = "libp2p-rendezvous"
|
|||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.56.1"
|
rust-version = "1.56.1"
|
||||||
description = "Rendezvous protocol for libp2p"
|
description = "Rendezvous protocol for libp2p"
|
||||||
version = "0.3.0"
|
version = "0.4.0"
|
||||||
authors = ["The COMIT guys <hello@comit.network>"]
|
authors = ["The COMIT guys <hello@comit.network>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/libp2p/rust-libp2p"
|
repository = "https://github.com/libp2p/rust-libp2p"
|
||||||
@ -12,8 +12,8 @@ categories = ["network-programming", "asynchronous"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
asynchronous-codec = "0.6"
|
asynchronous-codec = "0.6"
|
||||||
libp2p-core = { version = "0.31.0", path = "../../core", default-features = false }
|
libp2p-core = { version = "0.32.0", path = "../../core", default-features = false }
|
||||||
libp2p-swarm = { version = "0.33.0", path = "../../swarm" }
|
libp2p-swarm = { version = "0.34.0", path = "../../swarm" }
|
||||||
prost = "0.9"
|
prost = "0.9"
|
||||||
void = "1"
|
void = "1"
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
# 0.16.0 [unreleased]
|
||||||
|
|
||||||
|
- Update to `libp2p-core` `v0.32.0`.
|
||||||
|
|
||||||
|
- Update to `libp2p-swarm` `v0.34.0`.
|
||||||
|
|
||||||
# 0.15.0 [2022-01-27]
|
# 0.15.0 [2022-01-27]
|
||||||
|
|
||||||
- Update dependencies.
|
- Update dependencies.
|
||||||
|
@ -3,7 +3,7 @@ name = "libp2p-request-response"
|
|||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.56.1"
|
rust-version = "1.56.1"
|
||||||
description = "Generic Request/Response Protocols"
|
description = "Generic Request/Response Protocols"
|
||||||
version = "0.15.0"
|
version = "0.16.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/libp2p/rust-libp2p"
|
repository = "https://github.com/libp2p/rust-libp2p"
|
||||||
@ -15,8 +15,8 @@ async-trait = "0.1"
|
|||||||
bytes = "1"
|
bytes = "1"
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
instant = "0.1.11"
|
instant = "0.1.11"
|
||||||
libp2p-core = { version = "0.31.0", path = "../../core", default-features = false }
|
libp2p-core = { version = "0.32.0", path = "../../core", default-features = false }
|
||||||
libp2p-swarm = { version = "0.33.0", path = "../../swarm" }
|
libp2p-swarm = { version = "0.34.0", path = "../../swarm" }
|
||||||
log = "0.4.11"
|
log = "0.4.11"
|
||||||
rand = "0.7"
|
rand = "0.7"
|
||||||
smallvec = "1.6.1"
|
smallvec = "1.6.1"
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
# 0.34.0 [unreleased]
|
||||||
|
|
||||||
|
- Update to `libp2p-core` `v0.32.0`.
|
||||||
|
|
||||||
# 0.33.0 [2022-01-27]
|
# 0.33.0 [2022-01-27]
|
||||||
|
|
||||||
- Patch reporting on banned peers and their non-banned and banned connections (see [PR 2350]).
|
- Patch reporting on banned peers and their non-banned and banned connections (see [PR 2350]).
|
||||||
|
@ -3,7 +3,7 @@ name = "libp2p-swarm"
|
|||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.56.1"
|
rust-version = "1.56.1"
|
||||||
description = "The libp2p swarm"
|
description = "The libp2p swarm"
|
||||||
version = "0.33.0"
|
version = "0.34.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/libp2p/rust-libp2p"
|
repository = "https://github.com/libp2p/rust-libp2p"
|
||||||
@ -13,7 +13,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.31.0", path = "../core", default-features = false }
|
libp2p-core = { version = "0.32.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,3 +1,7 @@
|
|||||||
|
# 0.32.0 [unreleased]
|
||||||
|
|
||||||
|
- Update to `libp2p-core` `v0.32.0`.
|
||||||
|
|
||||||
# 0.31.0 [2022-01-27]
|
# 0.31.0 [2022-01-27]
|
||||||
|
|
||||||
- Update dependencies.
|
- Update dependencies.
|
||||||
|
@ -3,7 +3,7 @@ name = "libp2p-deflate"
|
|||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.56.1"
|
rust-version = "1.56.1"
|
||||||
description = "Deflate encryption protocol for libp2p"
|
description = "Deflate encryption protocol for libp2p"
|
||||||
version = "0.31.0"
|
version = "0.32.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/libp2p/rust-libp2p"
|
repository = "https://github.com/libp2p/rust-libp2p"
|
||||||
@ -12,7 +12,7 @@ categories = ["network-programming", "asynchronous"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
libp2p-core = { version = "0.31.0", path = "../../core", default-features = false }
|
libp2p-core = { version = "0.32.0", path = "../../core", default-features = false }
|
||||||
flate2 = "1.0"
|
flate2 = "1.0"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
# 0.32.0 [unreleased]
|
||||||
|
|
||||||
|
- Update to `libp2p-core` `v0.32.0`.
|
||||||
|
|
||||||
# 0.31.0 [2022-01-27]
|
# 0.31.0 [2022-01-27]
|
||||||
|
|
||||||
- Update dependencies.
|
- Update dependencies.
|
||||||
|
@ -3,7 +3,7 @@ name = "libp2p-dns"
|
|||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.56.1"
|
rust-version = "1.56.1"
|
||||||
description = "DNS transport implementation for libp2p"
|
description = "DNS transport implementation for libp2p"
|
||||||
version = "0.31.0"
|
version = "0.32.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/libp2p/rust-libp2p"
|
repository = "https://github.com/libp2p/rust-libp2p"
|
||||||
@ -11,7 +11,7 @@ keywords = ["peer-to-peer", "libp2p", "networking"]
|
|||||||
categories = ["network-programming", "asynchronous"]
|
categories = ["network-programming", "asynchronous"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
libp2p-core = { version = "0.31.0", path = "../../core", default-features = false }
|
libp2p-core = { version = "0.32.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,3 +1,7 @@
|
|||||||
|
# 0.35.0 [unreleased]
|
||||||
|
|
||||||
|
- Update to `libp2p-core` `v0.32.0`.
|
||||||
|
|
||||||
# 0.34.0 [2022-01-27]
|
# 0.34.0 [2022-01-27]
|
||||||
|
|
||||||
- Update dependencies.
|
- Update dependencies.
|
||||||
|
@ -3,7 +3,7 @@ name = "libp2p-noise"
|
|||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.56.1"
|
rust-version = "1.56.1"
|
||||||
description = "Cryptographic handshake protocol using the noise framework."
|
description = "Cryptographic handshake protocol using the noise framework."
|
||||||
version = "0.34.0"
|
version = "0.35.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/libp2p/rust-libp2p"
|
repository = "https://github.com/libp2p/rust-libp2p"
|
||||||
@ -13,7 +13,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.31.0", path = "../../core", default-features = false }
|
libp2p-core = { version = "0.32.0", path = "../../core", default-features = false }
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
prost = "0.9"
|
prost = "0.9"
|
||||||
rand = "0.8.3"
|
rand = "0.8.3"
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
# 0.32.0 [unreleased]
|
||||||
|
|
||||||
|
- Update to `libp2p-core` `v0.32.0`.
|
||||||
|
|
||||||
# 0.31.0 [2022-01-27]
|
# 0.31.0 [2022-01-27]
|
||||||
|
|
||||||
- Update dependencies.
|
- Update dependencies.
|
||||||
|
@ -3,7 +3,7 @@ name = "libp2p-plaintext"
|
|||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.56.1"
|
rust-version = "1.56.1"
|
||||||
description = "Plaintext encryption dummy protocol for libp2p"
|
description = "Plaintext encryption dummy protocol for libp2p"
|
||||||
version = "0.31.0"
|
version = "0.32.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/libp2p/rust-libp2p"
|
repository = "https://github.com/libp2p/rust-libp2p"
|
||||||
@ -14,7 +14,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.31.0", path = "../../core", default-features = false }
|
libp2p-core = { version = "0.32.0", path = "../../core", default-features = false }
|
||||||
log = "0.4.8"
|
log = "0.4.8"
|
||||||
prost = "0.9"
|
prost = "0.9"
|
||||||
unsigned-varint = { version = "0.7", features = ["asynchronous_codec"] }
|
unsigned-varint = { version = "0.7", features = ["asynchronous_codec"] }
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
# 0.32.0 [unreleased]
|
||||||
|
|
||||||
|
- Update to `libp2p-core` `v0.32.0`.
|
||||||
|
|
||||||
# 0.31.1 [2022-02-02]
|
# 0.31.1 [2022-02-02]
|
||||||
|
|
||||||
- Call `TcpSocket::take_error` to report connection establishment errors early.
|
- Call `TcpSocket::take_error` to report connection establishment errors early.
|
||||||
|
@ -3,7 +3,7 @@ name = "libp2p-tcp"
|
|||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.56.1"
|
rust-version = "1.56.1"
|
||||||
description = "TCP/IP transport protocol for libp2p"
|
description = "TCP/IP transport protocol for libp2p"
|
||||||
version = "0.31.1"
|
version = "0.32.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/libp2p/rust-libp2p"
|
repository = "https://github.com/libp2p/rust-libp2p"
|
||||||
@ -18,7 +18,7 @@ if-watch = { version = "1.0.0", optional = true }
|
|||||||
if-addrs = { version = "0.7.0", optional = true }
|
if-addrs = { version = "0.7.0", optional = true }
|
||||||
ipnet = "2.0.0"
|
ipnet = "2.0.0"
|
||||||
libc = "0.2.80"
|
libc = "0.2.80"
|
||||||
libp2p-core = { version = "0.31.0", path = "../../core", default-features = false }
|
libp2p-core = { version = "0.32.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,3 +1,7 @@
|
|||||||
|
# 0.32.0 [2022-01-27]
|
||||||
|
|
||||||
|
- Update to `libp2p-core` `v0.32.0`.
|
||||||
|
|
||||||
# 0.31.0 [2022-01-27]
|
# 0.31.0 [2022-01-27]
|
||||||
|
|
||||||
- Update dependencies.
|
- Update dependencies.
|
||||||
|
@ -3,7 +3,7 @@ name = "libp2p-uds"
|
|||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.56.1"
|
rust-version = "1.56.1"
|
||||||
description = "Unix domain sockets transport for libp2p"
|
description = "Unix domain sockets transport for libp2p"
|
||||||
version = "0.31.0"
|
version = "0.32.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/libp2p/rust-libp2p"
|
repository = "https://github.com/libp2p/rust-libp2p"
|
||||||
@ -12,7 +12,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.31.0", path = "../../core", default-features = false }
|
libp2p-core = { version = "0.32.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.15", default-features = false, features = ["net"], optional = true }
|
tokio = { version = "1.15", default-features = false, features = ["net"], optional = true }
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
# 0.32.0 [unreleased]
|
||||||
|
|
||||||
|
- Update to `libp2p-core` `v0.32.0`.
|
||||||
|
|
||||||
# 0.31.0 [2022-01-27]
|
# 0.31.0 [2022-01-27]
|
||||||
|
|
||||||
- Update dependencies.
|
- Update dependencies.
|
||||||
|
@ -3,7 +3,7 @@ name = "libp2p-wasm-ext"
|
|||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.56.1"
|
rust-version = "1.56.1"
|
||||||
description = "Allows passing in an external transport in a WASM environment"
|
description = "Allows passing in an external transport in a WASM environment"
|
||||||
version = "0.31.0"
|
version = "0.32.0"
|
||||||
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>"]
|
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/libp2p/rust-libp2p"
|
repository = "https://github.com/libp2p/rust-libp2p"
|
||||||
@ -13,7 +13,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.31.0", path = "../../core", default-features = false }
|
libp2p-core = { version = "0.32.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,3 +1,7 @@
|
|||||||
|
# 0.34.0 [unreleased]
|
||||||
|
|
||||||
|
- Update to `libp2p-core` `v0.32.0`.
|
||||||
|
|
||||||
# 0.33.0 [2022-01-27]
|
# 0.33.0 [2022-01-27]
|
||||||
|
|
||||||
- Update dependencies.
|
- Update dependencies.
|
||||||
|
@ -3,7 +3,7 @@ name = "libp2p-websocket"
|
|||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.56.1"
|
rust-version = "1.56.1"
|
||||||
description = "WebSocket transport for libp2p"
|
description = "WebSocket transport for libp2p"
|
||||||
version = "0.33.0"
|
version = "0.34.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/libp2p/rust-libp2p"
|
repository = "https://github.com/libp2p/rust-libp2p"
|
||||||
@ -14,7 +14,7 @@ categories = ["network-programming", "asynchronous"]
|
|||||||
futures-rustls = "0.22"
|
futures-rustls = "0.22"
|
||||||
either = "1.5.3"
|
either = "1.5.3"
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
libp2p-core = { version = "0.31.0", path = "../../core", default-features = false }
|
libp2p-core = { version = "0.32.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