mirror of
https://github.com/fluencelabs/rust-libp2p
synced 2025-06-22 22:31:33 +00:00
Prepare releases. (#1640)
* Prepare releases. * Re-export libp2p-request-response from libp2p crate. * Clean up changelogs. * Restore upper bounds. * Version 0.21 for the root crate. * Stricter lower bound in libp2p-websocket version in root crate. * Update misc/peer-id-generator/Cargo.toml Co-authored-by: Toralf Wittner <tw@dtex.org> * Update release date. * Update misc/peer-id-generator/Cargo.toml Co-authored-by: Toralf Wittner <tw@dtex.org> Co-authored-by: Toralf Wittner <tw@dtex.org>
This commit is contained in:
12
CHANGELOG.md
12
CHANGELOG.md
@ -1,5 +1,6 @@
|
|||||||
- [`libp2p-core` CHANGELOG](core/CHANGELOG.md)
|
- [`libp2p-core` CHANGELOG](core/CHANGELOG.md)
|
||||||
- [`libp2p-deflate` CHANGELOG](protocols/deflate/CHANGELOG.md)
|
- [`libp2p-deflate` CHANGELOG](protocols/deflate/CHANGELOG.md)
|
||||||
|
- [`libp2p-dns` CHANGELOG](transports/dns/CHANGELOG.md)
|
||||||
- [`libp2p-floodsub` CHANGELOG](protocols/floodsub/CHANGELOG.md)
|
- [`libp2p-floodsub` CHANGELOG](protocols/floodsub/CHANGELOG.md)
|
||||||
- [`libp2p-gossipsub` CHANGELOG](protocols/gossipsub/CHANGELOG.md)
|
- [`libp2p-gossipsub` CHANGELOG](protocols/gossipsub/CHANGELOG.md)
|
||||||
- [`libp2p-identify` CHANGELOG](protocols/identify/CHANGELOG.md)
|
- [`libp2p-identify` CHANGELOG](protocols/identify/CHANGELOG.md)
|
||||||
@ -15,11 +16,22 @@
|
|||||||
- [`libp2p-swarm` CHANGELOG](swarm/CHANGELOG.md)
|
- [`libp2p-swarm` CHANGELOG](swarm/CHANGELOG.md)
|
||||||
- [`libp2p-tcp` CHANGELOG](transports/tcp/CHANGELOG.md)
|
- [`libp2p-tcp` CHANGELOG](transports/tcp/CHANGELOG.md)
|
||||||
- [`libp2p-uds` CHANGELOG](transports/uds/CHANGELOG.md)
|
- [`libp2p-uds` CHANGELOG](transports/uds/CHANGELOG.md)
|
||||||
|
- [`libp2p-wasm-ext` CHANGELOG](transports/wasm-ext/CHANGELOG.md)
|
||||||
- [`libp2p-websocket` CHANGELOG](transports/websocket/CHANGELOG.md)
|
- [`libp2p-websocket` CHANGELOG](transports/websocket/CHANGELOG.md)
|
||||||
- [`libp2p-yamux` CHANGELOG](muxers/yamux/CHANGELOG.md)
|
- [`libp2p-yamux` CHANGELOG](muxers/yamux/CHANGELOG.md)
|
||||||
- [`multistream-select` CHANGELOG](misc/multistream-select/CHANGELOG.md)
|
- [`multistream-select` CHANGELOG](misc/multistream-select/CHANGELOG.md)
|
||||||
- [`parity-multiaddr` CHANGELOG](misc/multiaddr/CHANGELOG.md)
|
- [`parity-multiaddr` CHANGELOG](misc/multiaddr/CHANGELOG.md)
|
||||||
|
|
||||||
|
# Version 0.21.0 (2020-07-01)
|
||||||
|
|
||||||
|
- Conditional compilation fixes for the `wasm32-wasi` target
|
||||||
|
([PR 1633](https://github.com/libp2p/rust-libp2p/pull/1633)).
|
||||||
|
|
||||||
|
- New `libp2p-request-response` crate
|
||||||
|
([PR 1596](https://github.com/libp2p/rust-libp2p/pull/1596)).
|
||||||
|
|
||||||
|
- Updated libp2p dependencies.
|
||||||
|
|
||||||
# Version 0.19.1 (2020-05-25)
|
# Version 0.19.1 (2020-05-25)
|
||||||
|
|
||||||
- Temporarily pin all `async-std` dependencies to `< 1.6`.
|
- Temporarily pin all `async-std` dependencies to `< 1.6`.
|
||||||
|
42
Cargo.toml
42
Cargo.toml
@ -2,7 +2,7 @@
|
|||||||
name = "libp2p"
|
name = "libp2p"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "Peer-to-peer networking library"
|
description = "Peer-to-peer networking library"
|
||||||
version = "0.20.1"
|
version = "0.21.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"
|
||||||
@ -61,23 +61,23 @@ all-features = true
|
|||||||
bytes = "0.5"
|
bytes = "0.5"
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
lazy_static = "1.2"
|
lazy_static = "1.2"
|
||||||
libp2p-core = { version = "0.19.2", path = "core" }
|
libp2p-core = { version = "0.20.0", path = "core" }
|
||||||
libp2p-core-derive = { version = "0.19.1", path = "misc/core-derive" }
|
libp2p-core-derive = { version = "0.20.0", path = "misc/core-derive" }
|
||||||
libp2p-floodsub = { version = "0.19.1", path = "protocols/floodsub", optional = true }
|
libp2p-floodsub = { version = "0.20.0", path = "protocols/floodsub", optional = true }
|
||||||
libp2p-gossipsub = { version = "0.19.3", path = "./protocols/gossipsub", optional = true }
|
libp2p-gossipsub = { version = "0.20.0", path = "./protocols/gossipsub", optional = true }
|
||||||
libp2p-identify = { version = "0.19.2", path = "protocols/identify", optional = true }
|
libp2p-identify = { version = "0.20.0", path = "protocols/identify", optional = true }
|
||||||
libp2p-kad = { version = "0.20.1", path = "protocols/kad", optional = true }
|
libp2p-kad = { version = "0.21.0", path = "protocols/kad", optional = true }
|
||||||
libp2p-mplex = { version = "0.19.2", path = "muxers/mplex", optional = true }
|
libp2p-mplex = { version = "0.20.0", path = "muxers/mplex", optional = true }
|
||||||
libp2p-noise = { version = "0.19.1", path = "protocols/noise", optional = true }
|
libp2p-noise = { version = "0.20.0", path = "protocols/noise", optional = true }
|
||||||
libp2p-ping = { version = "0.19.3", path = "protocols/ping", optional = true }
|
libp2p-ping = { version = "0.20.0", path = "protocols/ping", optional = true }
|
||||||
libp2p-plaintext = { version = "0.19.1", path = "protocols/plaintext", optional = true }
|
libp2p-plaintext = { version = "0.20.0", path = "protocols/plaintext", optional = true }
|
||||||
libp2p-pnet = { version = "0.19.1", path = "protocols/pnet", optional = true }
|
libp2p-pnet = { version = "0.19.1", path = "protocols/pnet", optional = true }
|
||||||
libp2p-request-response = { version = "0.1.0", path = "protocols/request-response", optional = true }
|
libp2p-request-response = { version = "0.1.0", path = "protocols/request-response", optional = true }
|
||||||
libp2p-secio = { version = "0.19.2", path = "protocols/secio", default-features = false, optional = true }
|
libp2p-secio = { version = "0.20.0", path = "protocols/secio", default-features = false, optional = true }
|
||||||
libp2p-swarm = { version = "0.19.1", path = "swarm" }
|
libp2p-swarm = { version = "0.20.0", path = "swarm" }
|
||||||
libp2p-uds = { version = "0.19.2", path = "transports/uds", optional = true }
|
libp2p-uds = { version = "0.20.0", path = "transports/uds", optional = true }
|
||||||
libp2p-wasm-ext = { version = "0.19.0", path = "transports/wasm-ext", optional = true }
|
libp2p-wasm-ext = { version = "0.20.0", path = "transports/wasm-ext", optional = true }
|
||||||
libp2p-yamux = { version = "0.19.1", path = "muxers/yamux", optional = true }
|
libp2p-yamux = { version = "0.20.0", path = "muxers/yamux", optional = true }
|
||||||
multiaddr = { package = "parity-multiaddr", version = "0.9.1", path = "misc/multiaddr" }
|
multiaddr = { package = "parity-multiaddr", version = "0.9.1", path = "misc/multiaddr" }
|
||||||
multihash = "0.11.0"
|
multihash = "0.11.0"
|
||||||
parking_lot = "0.10.0"
|
parking_lot = "0.10.0"
|
||||||
@ -86,11 +86,11 @@ smallvec = "1.0"
|
|||||||
wasm-timer = "0.2.4"
|
wasm-timer = "0.2.4"
|
||||||
|
|
||||||
[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.19.2", path = "protocols/deflate", optional = true }
|
libp2p-deflate = { version = "0.20.0", path = "protocols/deflate", optional = true }
|
||||||
libp2p-dns = { version = "0.19.0", path = "transports/dns", optional = true }
|
libp2p-dns = { version = "0.20.0", path = "transports/dns", optional = true }
|
||||||
libp2p-mdns = { version = "0.19.2", path = "protocols/mdns", optional = true }
|
libp2p-mdns = { version = "0.20.0", path = "protocols/mdns", optional = true }
|
||||||
libp2p-tcp = { version = "0.19.2", path = "transports/tcp", optional = true }
|
libp2p-tcp = { version = "0.20.0", path = "transports/tcp", optional = true }
|
||||||
libp2p-websocket = { version = "0.20.0", path = "transports/websocket", optional = true }
|
libp2p-websocket = { version = "0.20.1", path = "transports/websocket", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
async-std = "1.6.2"
|
async-std = "1.6.2"
|
||||||
|
@ -1,4 +1,7 @@
|
|||||||
# 0.20.0 [????-??-??]
|
# 0.20.0 [2020-07-01]
|
||||||
|
|
||||||
|
- Conditional compilation fixes for the `wasm32-wasi` target
|
||||||
|
([PR 1633](https://github.com/libp2p/rust-libp2p/pull/1633)).
|
||||||
|
|
||||||
- Rename `StreamMuxer::poll_inbound` to `poll_event` and change the
|
- Rename `StreamMuxer::poll_inbound` to `poll_event` and change the
|
||||||
return value to `StreamMuxerEvent`. This new `StreamMuxerEvent` makes
|
return value to `StreamMuxerEvent`. This new `StreamMuxerEvent` makes
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
name = "libp2p-core"
|
name = "libp2p-core"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "Core traits and structs of libp2p"
|
description = "Core traits and structs of libp2p"
|
||||||
version = "0.19.2"
|
version = "0.20.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"
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
name = "libp2p-core-derive"
|
name = "libp2p-core-derive"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "Procedural macros of libp2p-core"
|
description = "Procedural macros of libp2p-core"
|
||||||
version = "0.19.1"
|
version = "0.20.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"
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
# 0.9.1 [2020-06-22]
|
# 0.9.1 [2020-06-22]
|
||||||
|
|
||||||
Updated dependencies.
|
- Updated dependencies.
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
# 0.8.2 [2020-06-22]
|
# 0.8.2 [2020-06-22]
|
||||||
|
|
||||||
Updated dependencies.
|
- Updated dependencies.
|
||||||
|
@ -11,5 +11,5 @@ categories = ["network-programming", "asynchronous"]
|
|||||||
publish = false
|
publish = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
libp2p-core = { version = "0.19.0", path = "../../core" }
|
libp2p-core = { path = "../../core" }
|
||||||
num_cpus = "1.8"
|
num_cpus = "1.8"
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
# 0.20.0 [2020-07-01]
|
||||||
|
|
||||||
|
- Update `libp2p-core`, i.e. `StreamMuxer::poll_inbound` has been renamed
|
||||||
|
to `poll_event` and returns a `StreamMuxerEvent`.
|
||||||
|
|
||||||
# 0.19.2 [2020-06-22]
|
# 0.19.2 [2020-06-22]
|
||||||
|
|
||||||
- Deprecated method `Multiplex::is_remote_acknowledged` has been removed
|
- Deprecated method `Multiplex::is_remote_acknowledged` has been removed
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
name = "libp2p-mplex"
|
name = "libp2p-mplex"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "Mplex multiplexing protocol for libp2p"
|
description = "Mplex multiplexing protocol for libp2p"
|
||||||
version = "0.19.2"
|
version = "0.20.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 @@ bytes = "0.5"
|
|||||||
fnv = "1.0"
|
fnv = "1.0"
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
futures_codec = "0.4"
|
futures_codec = "0.4"
|
||||||
libp2p-core = { version = "0.19.2", path = "../../core" }
|
libp2p-core = { version = "0.20.0", path = "../../core" }
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
parking_lot = "0.10"
|
parking_lot = "0.10"
|
||||||
unsigned-varint = { version = "0.4", features = ["futures-codec"] }
|
unsigned-varint = { version = "0.4", features = ["futures-codec"] }
|
||||||
|
@ -1,4 +1,9 @@
|
|||||||
|
# 0.20.0 [2020-07-01]
|
||||||
|
|
||||||
|
- Update `libp2p-core`, i.e. `StreamMuxer::poll_inbound` has been renamed
|
||||||
|
to `poll_event` and returns a `StreamMuxerEvent`.
|
||||||
|
|
||||||
# 0.19.1 [2020-06-22]
|
# 0.19.1 [2020-06-22]
|
||||||
|
|
||||||
Deprecated method `Yamux::is_remote_acknowledged` has been removed
|
- Deprecated method `Yamux::is_remote_acknowledged` has been removed
|
||||||
as part of [PR 1616](https://github.com/libp2p/rust-libp2p/pull/1616).
|
as part of [PR 1616](https://github.com/libp2p/rust-libp2p/pull/1616).
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
name = "libp2p-yamux"
|
name = "libp2p-yamux"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "Yamux multiplexing protocol for libp2p"
|
description = "Yamux multiplexing protocol for libp2p"
|
||||||
version = "0.19.1"
|
version = "0.20.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 @@ categories = ["network-programming", "asynchronous"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
libp2p-core = { version = "0.19.2", path = "../../core" }
|
libp2p-core = { version = "0.20.0", path = "../../core" }
|
||||||
parking_lot = "0.10"
|
parking_lot = "0.10"
|
||||||
thiserror = "1.0"
|
thiserror = "1.0"
|
||||||
yamux = "0.4.5"
|
yamux = "0.4.5"
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
# 0.20.0 [2020-07-01]
|
||||||
|
|
||||||
|
- Updated dependencies.
|
||||||
|
|
||||||
# 0.19.2 [2020-06-22]
|
# 0.19.2 [2020-06-22]
|
||||||
|
|
||||||
Updated dependencies.
|
- Updated dependencies.
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
name = "libp2p-deflate"
|
name = "libp2p-deflate"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "Deflate encryption protocol for libp2p"
|
description = "Deflate encryption protocol for libp2p"
|
||||||
version = "0.19.2"
|
version = "0.20.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 @@ categories = ["network-programming", "asynchronous"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
libp2p-core = { version = "0.19.2", path = "../../core" }
|
libp2p-core = { version = "0.20.0", path = "../../core" }
|
||||||
flate2 = "1.0"
|
flate2 = "1.0"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
# 0.20.0 [2020-07-01]
|
||||||
|
|
||||||
|
- Updated dependencies.
|
||||||
|
|
||||||
# 0.19.1 [2020-06-22]
|
# 0.19.1 [2020-06-22]
|
||||||
|
|
||||||
Updated dependencies.
|
- Updated dependencies.
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
name = "libp2p-floodsub"
|
name = "libp2p-floodsub"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "Floodsub protocol for libp2p"
|
description = "Floodsub protocol for libp2p"
|
||||||
version = "0.19.1"
|
version = "0.20.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"]
|
|||||||
cuckoofilter = "0.3.2"
|
cuckoofilter = "0.3.2"
|
||||||
fnv = "1.0"
|
fnv = "1.0"
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
libp2p-core = { version = "0.19.2", path = "../../core" }
|
libp2p-core = { version = "0.20.0", path = "../../core" }
|
||||||
libp2p-swarm = { version = "0.19.1", path = "../../swarm" }
|
libp2p-swarm = { version = "0.20.0", path = "../../swarm" }
|
||||||
prost = "0.6.1"
|
prost = "0.6.1"
|
||||||
rand = "0.7"
|
rand = "0.7"
|
||||||
smallvec = "1.0"
|
smallvec = "1.0"
|
||||||
|
@ -1,7 +1,11 @@
|
|||||||
|
# 0.20.0 [2020-07-01]
|
||||||
|
|
||||||
|
- Updated dependencies.
|
||||||
|
|
||||||
# 0.19.3 [2020-06-23]
|
# 0.19.3 [2020-06-23]
|
||||||
|
|
||||||
Maintenance release fixing linter warnings.
|
- Maintenance release fixing linter warnings.
|
||||||
|
|
||||||
# 0.19.2 [2020-06-22]
|
# 0.19.2 [2020-06-22]
|
||||||
|
|
||||||
Updated dependencies.
|
- Updated dependencies.
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
name = "libp2p-gossipsub"
|
name = "libp2p-gossipsub"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "Gossipsub protocol for libp2p"
|
description = "Gossipsub protocol for libp2p"
|
||||||
version = "0.19.3"
|
version = "0.20.0"
|
||||||
authors = ["Age Manning <Age@AgeManning.com>"]
|
authors = ["Age Manning <Age@AgeManning.com>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/libp2p/rust-libp2p"
|
repository = "https://github.com/libp2p/rust-libp2p"
|
||||||
@ -10,8 +10,8 @@ keywords = ["peer-to-peer", "libp2p", "networking"]
|
|||||||
categories = ["network-programming", "asynchronous"]
|
categories = ["network-programming", "asynchronous"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
libp2p-swarm = { version = "0.19.1", path = "../../swarm" }
|
libp2p-swarm = { version = "0.20.0", path = "../../swarm" }
|
||||||
libp2p-core = { version = "0.19.2", path = "../../core" }
|
libp2p-core = { version = "0.20.0", path = "../../core" }
|
||||||
bytes = "0.5.4"
|
bytes = "0.5.4"
|
||||||
byteorder = "1.3.2"
|
byteorder = "1.3.2"
|
||||||
fnv = "1.0.6"
|
fnv = "1.0.6"
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
# 0.20.0 [2020-07-01]
|
||||||
|
|
||||||
|
- Updated dependencies.
|
||||||
|
|
||||||
# 0.19.2 [2020-06-22]
|
# 0.19.2 [2020-06-22]
|
||||||
|
|
||||||
Updated dependencies.
|
- Updated dependencies.
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
name = "libp2p-identify"
|
name = "libp2p-identify"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "Nodes identifcation protocol for libp2p"
|
description = "Nodes identifcation protocol for libp2p"
|
||||||
version = "0.19.2"
|
version = "0.20.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,8 +11,8 @@ categories = ["network-programming", "asynchronous"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
libp2p-core = { version = "0.19.2", path = "../../core" }
|
libp2p-core = { version = "0.20.0", path = "../../core" }
|
||||||
libp2p-swarm = { version = "0.19.1", path = "../../swarm" }
|
libp2p-swarm = { version = "0.20.0", path = "../../swarm" }
|
||||||
log = "0.4.1"
|
log = "0.4.1"
|
||||||
prost = "0.6.1"
|
prost = "0.6.1"
|
||||||
smallvec = "1.0"
|
smallvec = "1.0"
|
||||||
|
@ -1,4 +1,7 @@
|
|||||||
# 0.21.0 [????-??-??]
|
# 0.21.0 [2020-07-01]
|
||||||
|
|
||||||
|
- Remove `KademliaEvent::Discovered`
|
||||||
|
([PR 1632](https://github.com/libp2p/rust-libp2p/pull/1632))
|
||||||
|
|
||||||
- More control and insight for k-buckets
|
- More control and insight for k-buckets
|
||||||
([PR 1628](https://github.com/libp2p/rust-libp2p/pull/1628)).
|
([PR 1628](https://github.com/libp2p/rust-libp2p/pull/1628)).
|
||||||
@ -12,7 +15,7 @@
|
|||||||
|
|
||||||
# 0.20.1 [2020-06-23]
|
# 0.20.1 [2020-06-23]
|
||||||
|
|
||||||
Maintenance release ([PR 1623](https://github.com/libp2p/rust-libp2p/pull/1623)).
|
- Maintenance release ([PR 1623](https://github.com/libp2p/rust-libp2p/pull/1623)).
|
||||||
|
|
||||||
# 0.20.0 [2020-06-22]
|
# 0.20.0 [2020-06-22]
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
name = "libp2p-kad"
|
name = "libp2p-kad"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "Kademlia protocol for libp2p"
|
description = "Kademlia protocol for libp2p"
|
||||||
version = "0.20.1"
|
version = "0.21.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"
|
||||||
@ -17,8 +17,8 @@ fnv = "1.0"
|
|||||||
futures_codec = "0.4"
|
futures_codec = "0.4"
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
libp2p-core = { version = "0.19.2", path = "../../core" }
|
libp2p-core = { version = "0.20.0", path = "../../core" }
|
||||||
libp2p-swarm = { version = "0.19.1", path = "../../swarm" }
|
libp2p-swarm = { version = "0.20.0", path = "../../swarm" }
|
||||||
multihash = "0.11.0"
|
multihash = "0.11.0"
|
||||||
prost = "0.6.1"
|
prost = "0.6.1"
|
||||||
rand = "0.7.2"
|
rand = "0.7.2"
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
# 0.20.0 [2020-07-01]
|
||||||
|
|
||||||
|
- Updated dependencies.
|
||||||
|
|
||||||
# 0.19.2 [2020-06-22]
|
# 0.19.2 [2020-06-22]
|
||||||
|
|
||||||
Updated dependencies.
|
- Updated dependencies.
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "libp2p-mdns"
|
name = "libp2p-mdns"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
version = "0.19.2"
|
version = "0.20.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"
|
||||||
@ -16,8 +16,8 @@ dns-parser = "0.8"
|
|||||||
either = "1.5.3"
|
either = "1.5.3"
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
lazy_static = "1.2"
|
lazy_static = "1.2"
|
||||||
libp2p-core = { version = "0.19.2", path = "../../core" }
|
libp2p-core = { version = "0.20.0", path = "../../core" }
|
||||||
libp2p-swarm = { version = "0.19.1", path = "../../swarm" }
|
libp2p-swarm = { version = "0.20.0", path = "../../swarm" }
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
net2 = "0.2"
|
net2 = "0.2"
|
||||||
rand = "0.7"
|
rand = "0.7"
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
# 0.20.0 [2020-07-01]
|
||||||
|
|
||||||
|
- Updated dependencies.
|
||||||
|
- Conditional compilation fixes for the `wasm32-wasi` target
|
||||||
|
([PR 1633](https://github.com/libp2p/rust-libp2p/pull/1633)).
|
||||||
|
|
||||||
# 0.19.1 [2020-06-22]
|
# 0.19.1 [2020-06-22]
|
||||||
|
|
||||||
- Re-add noise upgrades for IK and IX
|
- Re-add noise upgrades for IK and IX
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "libp2p-noise"
|
name = "libp2p-noise"
|
||||||
description = "Cryptographic handshake protocol using the noise framework."
|
description = "Cryptographic handshake protocol using the noise framework."
|
||||||
version = "0.19.1"
|
version = "0.20.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 @@ edition = "2018"
|
|||||||
curve25519-dalek = "2.0.0"
|
curve25519-dalek = "2.0.0"
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
lazy_static = "1.2"
|
lazy_static = "1.2"
|
||||||
libp2p-core = { version = "0.19.2", path = "../../core" }
|
libp2p-core = { version = "0.20.0", path = "../../core" }
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
prost = "0.6.1"
|
prost = "0.6.1"
|
||||||
rand = "0.7.2"
|
rand = "0.7.2"
|
||||||
|
@ -1,6 +1,10 @@
|
|||||||
|
# 0.20.0 [2020-07-01]
|
||||||
|
|
||||||
|
- Updated dependencies.
|
||||||
|
|
||||||
# 0.19.3 [2020-06-22]
|
# 0.19.3 [2020-06-22]
|
||||||
|
|
||||||
Updated dependencies.
|
- Updated dependencies.
|
||||||
|
|
||||||
# 0.19.2 [2020-06-18]
|
# 0.19.2 [2020-06-18]
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
name = "libp2p-ping"
|
name = "libp2p-ping"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "Ping protocol for libp2p"
|
description = "Ping protocol for libp2p"
|
||||||
version = "0.19.3"
|
version = "0.20.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,8 +11,8 @@ categories = ["network-programming", "asynchronous"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
libp2p-core = { version = "0.19.2", path = "../../core" }
|
libp2p-core = { version = "0.20.0", path = "../../core" }
|
||||||
libp2p-swarm = { version = "0.19.1", path = "../../swarm" }
|
libp2p-swarm = { version = "0.20.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,7 @@
|
|||||||
|
# 0.20.0 [2020-07-01]
|
||||||
|
|
||||||
|
- Updated dependencies.
|
||||||
|
|
||||||
# 0.19.1 [2020-06-22]
|
# 0.19.1 [2020-06-22]
|
||||||
|
|
||||||
Updated dependencies.
|
- Updated dependencies.
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
name = "libp2p-plaintext"
|
name = "libp2p-plaintext"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "Plaintext encryption dummy protocol for libp2p"
|
description = "Plaintext encryption dummy protocol for libp2p"
|
||||||
version = "0.19.1"
|
version = "0.20.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"]
|
|||||||
bytes = "0.5"
|
bytes = "0.5"
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
futures_codec = "0.4.0"
|
futures_codec = "0.4.0"
|
||||||
libp2p-core = { version = "0.19.2", path = "../../core" }
|
libp2p-core = { version = "0.20.0", path = "../../core" }
|
||||||
log = "0.4.8"
|
log = "0.4.8"
|
||||||
prost = "0.6.1"
|
prost = "0.6.1"
|
||||||
rw-stream-sink = "0.2.0"
|
rw-stream-sink = "0.2.0"
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# 0.1.0
|
# 0.1.0
|
||||||
|
|
||||||
Initial release.
|
- Initial release.
|
||||||
|
|
||||||
|
@ -12,8 +12,8 @@ categories = ["network-programming", "asynchronous"]
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
async-trait = "0.1"
|
async-trait = "0.1"
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
libp2p-core = { version = "0.19.2", path = "../../core" }
|
libp2p-core = { version = "0.20.0", path = "../../core" }
|
||||||
libp2p-swarm = { version = "0.19.1", path = "../../swarm" }
|
libp2p-swarm = { version = "0.20.0", path = "../../swarm" }
|
||||||
smallvec = "1.4"
|
smallvec = "1.4"
|
||||||
wasm-timer = "0.2"
|
wasm-timer = "0.2"
|
||||||
|
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
# 0.20.0 [2020-07-01]
|
||||||
|
|
||||||
|
- Updated dependencies.
|
||||||
|
- Conditional compilation fixes for the `wasm32-wasi` target
|
||||||
|
([PR 1633](https://github.com/libp2p/rust-libp2p/pull/1633)).
|
||||||
|
|
||||||
# 0.19.2 [2020-06-22]
|
# 0.19.2 [2020-06-22]
|
||||||
|
|
||||||
Updated dependencies.
|
- Updated dependencies.
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
name = "libp2p-secio"
|
name = "libp2p-secio"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "Secio encryption protocol for libp2p"
|
description = "Secio encryption protocol for libp2p"
|
||||||
version = "0.19.2"
|
version = "0.20.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"
|
||||||
@ -16,7 +16,7 @@ ctr = "0.3"
|
|||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
hmac = "0.7.0"
|
hmac = "0.7.0"
|
||||||
lazy_static = "1.2.0"
|
lazy_static = "1.2.0"
|
||||||
libp2p-core = { version = "0.19.2", path = "../../core" }
|
libp2p-core = { version = "0.20.0", path = "../../core" }
|
||||||
log = "0.4.6"
|
log = "0.4.6"
|
||||||
prost = "0.6.1"
|
prost = "0.6.1"
|
||||||
pin-project = "0.4.17"
|
pin-project = "0.4.17"
|
||||||
|
@ -243,6 +243,10 @@ pub use libp2p_yamux as yamux;
|
|||||||
#[cfg_attr(docsrs, doc(cfg(feature = "pnet")))]
|
#[cfg_attr(docsrs, doc(cfg(feature = "pnet")))]
|
||||||
#[doc(inline)]
|
#[doc(inline)]
|
||||||
pub use libp2p_pnet as pnet;
|
pub use libp2p_pnet as pnet;
|
||||||
|
#[cfg(feature = "request-response")]
|
||||||
|
#[cfg_attr(docsrs, doc(cfg(feature = "request-response")))]
|
||||||
|
#[doc(inline)]
|
||||||
|
pub use libp2p_request_response as request_response;
|
||||||
|
|
||||||
mod transport_ext;
|
mod transport_ext;
|
||||||
|
|
||||||
|
@ -1,4 +1,6 @@
|
|||||||
# 0.20.0 [????-??-??]
|
# 0.20.0 [2020-07-01]
|
||||||
|
|
||||||
|
- Updated the `libp2p-core` dependency.
|
||||||
|
|
||||||
- Add `ProtocolsHandler::inject_listen_upgrade_error`, the inbound
|
- Add `ProtocolsHandler::inject_listen_upgrade_error`, the inbound
|
||||||
analogue of `ProtocolsHandler::inject_dial_upgrade_error`, with an
|
analogue of `ProtocolsHandler::inject_dial_upgrade_error`, with an
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
name = "libp2p-swarm"
|
name = "libp2p-swarm"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "The libp2p swarm"
|
description = "The libp2p swarm"
|
||||||
version = "0.19.1"
|
version = "0.20.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 @@ categories = ["network-programming", "asynchronous"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
libp2p-core = { version = "0.19.2", path = "../core" }
|
libp2p-core = { version = "0.20.0", path = "../core" }
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
rand = "0.7"
|
rand = "0.7"
|
||||||
smallvec = "1.0"
|
smallvec = "1.0"
|
||||||
|
4
transports/dns/CHANGELOG.md
Normal file
4
transports/dns/CHANGELOG.md
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
# 0.20.0 [2020-07-01]
|
||||||
|
|
||||||
|
- Dependency and documentation updates.
|
||||||
|
|
@ -2,7 +2,7 @@
|
|||||||
name = "libp2p-dns"
|
name = "libp2p-dns"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "DNS transport implementation for libp2p"
|
description = "DNS transport implementation for libp2p"
|
||||||
version = "0.19.0"
|
version = "0.20.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"
|
||||||
@ -10,6 +10,6 @@ keywords = ["peer-to-peer", "libp2p", "networking"]
|
|||||||
categories = ["network-programming", "asynchronous"]
|
categories = ["network-programming", "asynchronous"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
libp2p-core = { version = "0.19.0", path = "../../core" }
|
libp2p-core = { version = "0.20.0", path = "../../core" }
|
||||||
log = "0.4.1"
|
log = "0.4.1"
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
# 0.20.0 [2020-07-01]
|
||||||
|
|
||||||
|
- Updated dependencies.
|
||||||
|
|
||||||
# 0.19.2 [2020-06-22]
|
# 0.19.2 [2020-06-22]
|
||||||
|
|
||||||
Updated dependencies.
|
- Updated dependencies.
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
name = "libp2p-tcp"
|
name = "libp2p-tcp"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "TCP/IP transport protocol for libp2p"
|
description = "TCP/IP transport protocol for libp2p"
|
||||||
version = "0.19.2"
|
version = "0.20.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,7 +15,7 @@ futures = "0.3.1"
|
|||||||
futures-timer = "3.0"
|
futures-timer = "3.0"
|
||||||
get_if_addrs = "0.5.3"
|
get_if_addrs = "0.5.3"
|
||||||
ipnet = "2.0.0"
|
ipnet = "2.0.0"
|
||||||
libp2p-core = { version = "0.19.2", path = "../../core" }
|
libp2p-core = { version = "0.20.0", path = "../../core" }
|
||||||
log = "0.4.1"
|
log = "0.4.1"
|
||||||
socket2 = "0.3.12"
|
socket2 = "0.3.12"
|
||||||
tokio = { version = "0.2", default-features = false, features = ["tcp"], optional = true }
|
tokio = { version = "0.2", default-features = false, features = ["tcp"], optional = true }
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
# 0.20.0 [2020-07-01]
|
||||||
|
|
||||||
|
- Updated dependencies.
|
||||||
|
- Conditional compilation fixes for the `wasm32-wasi` target
|
||||||
|
([PR 1633](https://github.com/libp2p/rust-libp2p/pull/1633)).
|
||||||
|
|
||||||
# 0.19.2 [2020-06-22]
|
# 0.19.2 [2020-06-22]
|
||||||
|
|
||||||
Updated dependencies.
|
- Updated dependencies.
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
name = "libp2p-uds"
|
name = "libp2p-uds"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "Unix domain sockets transport for libp2p"
|
description = "Unix domain sockets transport for libp2p"
|
||||||
version = "0.19.2"
|
version = "0.20.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 @@ 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.19.2", path = "../../core" }
|
libp2p-core = { version = "0.20.0", path = "../../core" }
|
||||||
log = "0.4.1"
|
log = "0.4.1"
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
tokio = { version = "0.2", default-features = false, features = ["uds"], optional = true }
|
tokio = { version = "0.2", default-features = false, features = ["uds"], optional = true }
|
||||||
|
6
transports/wasm-ext/CHANGELOG.md
Normal file
6
transports/wasm-ext/CHANGELOG.md
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
# 0.20.0 [2020-07-01]
|
||||||
|
|
||||||
|
- Updated dependencies.
|
||||||
|
- Support `/dns` in the websocket implementation
|
||||||
|
([PR 1626](https://github.com/libp2p/rust-libp2p/pull/1626))
|
||||||
|
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "libp2p-wasm-ext"
|
name = "libp2p-wasm-ext"
|
||||||
version = "0.19.0"
|
version = "0.20.0"
|
||||||
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>"]
|
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "Allows passing in an external transport in a WASM environment"
|
description = "Allows passing in an external transport in a WASM environment"
|
||||||
@ -12,7 +12,7 @@ categories = ["network-programming", "asynchronous"]
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
js-sys = "0.3.19"
|
js-sys = "0.3.19"
|
||||||
libp2p-core = { version = "0.19.0", path = "../../core" }
|
libp2p-core = { version = "0.20.0", path = "../../core" }
|
||||||
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.20.1 [2020-07-01]
|
||||||
|
|
||||||
|
- Updated dependencies.
|
||||||
|
|
||||||
# 0.20.0 [2020-06-22]
|
# 0.20.0 [2020-06-22]
|
||||||
|
|
||||||
- Updated `soketto` dependency which caused some smaller
|
- Updated `soketto` dependency which caused some smaller
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
name = "libp2p-websocket"
|
name = "libp2p-websocket"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "WebSocket transport for libp2p"
|
description = "WebSocket transport for libp2p"
|
||||||
version = "0.20.0"
|
version = "0.20.1"
|
||||||
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"]
|
|||||||
async-tls = "0.7.0"
|
async-tls = "0.7.0"
|
||||||
either = "1.5.3"
|
either = "1.5.3"
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
libp2p-core = { version = "0.19.2", path = "../../core" }
|
libp2p-core = { version = "0.20.0", path = "../../core" }
|
||||||
log = "0.4.8"
|
log = "0.4.8"
|
||||||
quicksink = "0.1"
|
quicksink = "0.1"
|
||||||
rustls = "0.17.0"
|
rustls = "0.17.0"
|
||||||
|
Reference in New Issue
Block a user