mirror of
https://github.com/fluencelabs/rust-libp2p
synced 2025-04-25 11:02:12 +00:00
Set development versions appropriately and update changelogs.
This commit is contained in:
parent
e62cd44a99
commit
c94262d03a
22
Cargo.toml
22
Cargo.toml
@ -64,23 +64,23 @@ atomic = "0.4.6"
|
|||||||
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.21.0", path = "core" }
|
libp2p-core = { version = "0.22.0", path = "core" }
|
||||||
libp2p-core-derive = { version = "0.20.2", path = "misc/core-derive" }
|
libp2p-core-derive = { version = "0.20.2", path = "misc/core-derive" }
|
||||||
libp2p-floodsub = { version = "0.22.0", path = "protocols/floodsub", optional = true }
|
libp2p-floodsub = { version = "0.22.0", path = "protocols/floodsub", optional = true }
|
||||||
libp2p-gossipsub = { version = "0.22.0", path = "./protocols/gossipsub", optional = true }
|
libp2p-gossipsub = { version = "0.22.0", path = "./protocols/gossipsub", optional = true }
|
||||||
libp2p-identify = { version = "0.22.0", path = "protocols/identify", optional = true }
|
libp2p-identify = { version = "0.22.0", path = "protocols/identify", optional = true }
|
||||||
libp2p-kad = { version = "0.23.0", path = "protocols/kad", optional = true }
|
libp2p-kad = { version = "0.23.0", path = "protocols/kad", optional = true }
|
||||||
libp2p-mplex = { version = "0.21.0", path = "muxers/mplex", optional = true }
|
libp2p-mplex = { version = "0.22.0", path = "muxers/mplex", optional = true }
|
||||||
libp2p-noise = { version = "0.24.0", path = "protocols/noise", optional = true }
|
libp2p-noise = { version = "0.24.0", path = "protocols/noise", optional = true }
|
||||||
libp2p-ping = { version = "0.22.0", path = "protocols/ping", optional = true }
|
libp2p-ping = { version = "0.22.0", path = "protocols/ping", optional = true }
|
||||||
libp2p-plaintext = { version = "0.21.0", path = "protocols/plaintext", optional = true }
|
libp2p-plaintext = { version = "0.22.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.3.0", path = "protocols/request-response", optional = true }
|
libp2p-request-response = { version = "0.3.0", path = "protocols/request-response", optional = true }
|
||||||
libp2p-secio = { version = "0.21.0", path = "protocols/secio", default-features = false, optional = true }
|
libp2p-secio = { version = "0.22.0", path = "protocols/secio", default-features = false, optional = true }
|
||||||
libp2p-swarm = { version = "0.22.0", path = "swarm" }
|
libp2p-swarm = { version = "0.22.0", path = "swarm" }
|
||||||
libp2p-uds = { version = "0.21.0", path = "transports/uds", optional = true }
|
libp2p-uds = { version = "0.22.0", path = "transports/uds", optional = true }
|
||||||
libp2p-wasm-ext = { version = "0.21.0", path = "transports/wasm-ext", optional = true }
|
libp2p-wasm-ext = { version = "0.22.0", path = "transports/wasm-ext", optional = true }
|
||||||
libp2p-yamux = { version = "0.21.0", path = "muxers/yamux", optional = true }
|
libp2p-yamux = { version = "0.22.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"
|
||||||
@ -89,11 +89,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.21.0", path = "protocols/deflate", optional = true }
|
libp2p-deflate = { version = "0.22.0", path = "protocols/deflate", optional = true }
|
||||||
libp2p-dns = { version = "0.21.0", path = "transports/dns", optional = true }
|
libp2p-dns = { version = "0.22.0", path = "transports/dns", optional = true }
|
||||||
libp2p-mdns = { version = "0.22.0", path = "protocols/mdns", optional = true }
|
libp2p-mdns = { version = "0.22.0", path = "protocols/mdns", optional = true }
|
||||||
libp2p-tcp = { version = "0.21.0", path = "transports/tcp", optional = true }
|
libp2p-tcp = { version = "0.22.0", path = "transports/tcp", optional = true }
|
||||||
libp2p-websocket = { version = "0.22.0", path = "transports/websocket", optional = true }
|
libp2p-websocket = { version = "0.23.0", path = "transports/websocket", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
async-std = "1.6.2"
|
async-std = "1.6.2"
|
||||||
|
@ -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.21.0"
|
version = "0.22.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,7 @@
|
|||||||
|
# 0.22.0 [unreleased]
|
||||||
|
|
||||||
|
- Bump `libp2p-core` dependency.
|
||||||
|
|
||||||
# 0.21.0 [2020-08-18]
|
# 0.21.0 [2020-08-18]
|
||||||
|
|
||||||
- Bump `libp2p-core` dependency.
|
- Bump `libp2p-core` dependency.
|
||||||
|
@ -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.21.0"
|
version = "0.22.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.21.0", path = "../../core" }
|
libp2p-core = { version = "0.22.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,3 +1,7 @@
|
|||||||
|
# 0.22.0 [unreleased]
|
||||||
|
|
||||||
|
- Bump `libp2p-core` dependency.
|
||||||
|
|
||||||
# 0.21.0 [2020-08-18]
|
# 0.21.0 [2020-08-18]
|
||||||
|
|
||||||
- Bump `libp2p-core` dependency.
|
- Bump `libp2p-core` dependency.
|
||||||
|
@ -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.21.0"
|
version = "0.22.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.21.0", path = "../../core" }
|
libp2p-core = { version = "0.22.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.22.0 [unreleased]
|
||||||
|
|
||||||
|
- Bump `libp2p-core` dependency.
|
||||||
|
|
||||||
# 0.21.0 [2020-08-18]
|
# 0.21.0 [2020-08-18]
|
||||||
|
|
||||||
- Bump `libp2p-core` dependency.
|
- Bump `libp2p-core` dependency.
|
||||||
|
@ -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.21.0"
|
version = "0.22.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.21.0", path = "../../core" }
|
libp2p-core = { version = "0.22.0", path = "../../core" }
|
||||||
flate2 = "1.0"
|
flate2 = "1.0"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# 0.22.0 [unreleased]
|
# 0.22.0 [unreleased]
|
||||||
|
|
||||||
- Update `libp2p-swarm`.
|
- Update `libp2p-swarm` and `libp2p-core`.
|
||||||
|
|
||||||
# 0.21.0 [2020-08-18]
|
# 0.21.0 [2020-08-18]
|
||||||
|
|
||||||
|
@ -13,7 +13,7 @@ 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.21.0", path = "../../core" }
|
libp2p-core = { version = "0.22.0", path = "../../core" }
|
||||||
libp2p-swarm = { version = "0.22.0", path = "../../swarm" }
|
libp2p-swarm = { version = "0.22.0", path = "../../swarm" }
|
||||||
prost = "0.6.1"
|
prost = "0.6.1"
|
||||||
rand = "0.7"
|
rand = "0.7"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# 0.22.0 [unreleased]
|
# 0.22.0 [unreleased]
|
||||||
|
|
||||||
- Update `libp2p-swarm`.
|
- Update `libp2p-swarm` and `libp2p-core`.
|
||||||
|
|
||||||
# 0.21.0 [2020-08-18]
|
# 0.21.0 [2020-08-18]
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@ categories = ["network-programming", "asynchronous"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
libp2p-swarm = { version = "0.22.0", path = "../../swarm" }
|
libp2p-swarm = { version = "0.22.0", path = "../../swarm" }
|
||||||
libp2p-core = { version = "0.21.0", path = "../../core" }
|
libp2p-core = { version = "0.22.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,6 +1,6 @@
|
|||||||
# 0.22.0 [unreleased]
|
# 0.22.0 [unreleased]
|
||||||
|
|
||||||
- Update `libp2p-swarm`.
|
- Update `libp2p-swarm` and `libp2p-core`.
|
||||||
|
|
||||||
# 0.21.0 [2020-08-18]
|
# 0.21.0 [2020-08-18]
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@ categories = ["network-programming", "asynchronous"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
libp2p-core = { version = "0.21.0", path = "../../core" }
|
libp2p-core = { version = "0.22.0", path = "../../core" }
|
||||||
libp2p-swarm = { version = "0.22.0", path = "../../swarm" }
|
libp2p-swarm = { version = "0.22.0", path = "../../swarm" }
|
||||||
log = "0.4.1"
|
log = "0.4.1"
|
||||||
prost = "0.6.1"
|
prost = "0.6.1"
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
- Add `Distance::log2` ([PR 1719](https://github.com/libp2p/rust-libp2p/pull/1719)).
|
- Add `Distance::log2` ([PR 1719](https://github.com/libp2p/rust-libp2p/pull/1719)).
|
||||||
|
|
||||||
- Update `libp2p-swarm`.
|
- Update `libp2p-swarm` and `libp2p-core`.
|
||||||
|
|
||||||
# 0.22.1 [2020-08-19]
|
# 0.22.1 [2020-08-19]
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@ 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.21.0", path = "../../core" }
|
libp2p-core = { version = "0.22.0", path = "../../core" }
|
||||||
libp2p-swarm = { version = "0.22.0", path = "../../swarm" }
|
libp2p-swarm = { version = "0.22.0", path = "../../swarm" }
|
||||||
multihash = "0.11.0"
|
multihash = "0.11.0"
|
||||||
prost = "0.6.1"
|
prost = "0.6.1"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# 0.22.0 [unreleased]
|
# 0.22.0 [unreleased]
|
||||||
|
|
||||||
- Update `libp2p-swarm`.
|
- Update `libp2p-swarm` and `libp2p-core`.
|
||||||
|
|
||||||
# 0.21.0 [2020-08-18]
|
# 0.21.0 [2020-08-18]
|
||||||
|
|
||||||
|
@ -16,7 +16,7 @@ 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.21.0", path = "../../core" }
|
libp2p-core = { version = "0.22.0", path = "../../core" }
|
||||||
libp2p-swarm = { version = "0.22.0", path = "../../swarm" }
|
libp2p-swarm = { version = "0.22.0", path = "../../swarm" }
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
net2 = "0.2"
|
net2 = "0.2"
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
# 0.24.0 [unreleased]
|
# 0.24.0 [unreleased]
|
||||||
|
|
||||||
|
- Bump `libp2p-core` dependency.
|
||||||
|
|
||||||
- Remove fallback legacy handshake payload decoding by default.
|
- Remove fallback legacy handshake payload decoding by default.
|
||||||
To continue supporting inbound legacy handshake payloads,
|
To continue supporting inbound legacy handshake payloads,
|
||||||
`recv_legacy_handshake` must be configured on the `LegacyConfig`.
|
`recv_legacy_handshake` must be configured on the `LegacyConfig`.
|
||||||
|
@ -12,7 +12,7 @@ bytes = "0.5"
|
|||||||
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.21.0", path = "../../core" }
|
libp2p-core = { version = "0.22.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,6 @@
|
|||||||
# 0.22.0 [unreleased]
|
# 0.22.0 [unreleased]
|
||||||
|
|
||||||
- Update `libp2p-swarm`.
|
- Update `libp2p-swarm` and `libp2p-core`.
|
||||||
|
|
||||||
# 0.21.0 [2020-08-18]
|
# 0.21.0 [2020-08-18]
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@ categories = ["network-programming", "asynchronous"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
libp2p-core = { version = "0.21.0", path = "../../core" }
|
libp2p-core = { version = "0.22.0", path = "../../core" }
|
||||||
libp2p-swarm = { version = "0.22.0", path = "../../swarm" }
|
libp2p-swarm = { version = "0.22.0", path = "../../swarm" }
|
||||||
log = "0.4.1"
|
log = "0.4.1"
|
||||||
rand = "0.7.2"
|
rand = "0.7.2"
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
# 0.22.0 [unreleased]
|
||||||
|
|
||||||
|
- Bump `libp2p-core` dependency.
|
||||||
|
|
||||||
# 0.21.0 [2020-08-18]
|
# 0.21.0 [2020-08-18]
|
||||||
|
|
||||||
- Bump `libp2p-core` dependency.
|
- Bump `libp2p-core` dependency.
|
||||||
|
@ -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.21.0"
|
version = "0.22.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.21.0", path = "../../core" }
|
libp2p-core = { version = "0.22.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,6 +1,6 @@
|
|||||||
# 0.3.0 [unreleased]
|
# 0.3.0 [unreleased]
|
||||||
|
|
||||||
- Update `libp2p-swarm`.
|
- Update `libp2p-swarm` and `libp2p-core`.
|
||||||
|
|
||||||
# 0.2.0 [2020-08-18]
|
# 0.2.0 [2020-08-18]
|
||||||
|
|
||||||
|
@ -12,7 +12,7 @@ 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.21.0", path = "../../core" }
|
libp2p-core = { version = "0.22.0", path = "../../core" }
|
||||||
libp2p-swarm = { version = "0.22.0", path = "../../swarm" }
|
libp2p-swarm = { version = "0.22.0", path = "../../swarm" }
|
||||||
log = "0.4.11"
|
log = "0.4.11"
|
||||||
lru = "0.6"
|
lru = "0.6"
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
# 0.22.0 [unreleased]
|
||||||
|
|
||||||
|
- Bump `libp2p-core` dependency.
|
||||||
|
|
||||||
# 0.21.0 [2020-08-18]
|
# 0.21.0 [2020-08-18]
|
||||||
|
|
||||||
- Bump `libp2p-core` dependency.
|
- Bump `libp2p-core` dependency.
|
||||||
|
@ -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.21.0"
|
version = "0.22.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.21.0", path = "../../core" }
|
libp2p-core = { version = "0.22.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"
|
||||||
|
@ -1,9 +1,12 @@
|
|||||||
# 0.22.0 [unreleased]
|
# 0.22.0 [unreleased]
|
||||||
|
|
||||||
|
- Bump `libp2p-core` dependency.
|
||||||
|
|
||||||
- Adds `ProtocolsHandler::InboundOpenInfo` type which mirrors the existing
|
- Adds `ProtocolsHandler::InboundOpenInfo` type which mirrors the existing
|
||||||
`OutboundOpenInfo` type. A value of this type is passed as an extra argument
|
`OutboundOpenInfo` type. A value of this type is passed as an extra argument
|
||||||
to `ProtocolsHandler::inject_fully_negotiated_inbound` and
|
to `ProtocolsHandler::inject_fully_negotiated_inbound` and
|
||||||
`ProtocolsHandler::inject_listen_upgrade_error`.
|
`ProtocolsHandler::inject_listen_upgrade_error`.
|
||||||
|
|
||||||
- `SubstreamProtocol` now has a second type parameter corresponding to
|
- `SubstreamProtocol` now has a second type parameter corresponding to
|
||||||
inbound or outbound information, a value of which is part of `SubstreamProtocol`
|
inbound or outbound information, a value of which is part of `SubstreamProtocol`
|
||||||
now. Consequently `ProtocolsHandlerEvent::OutboundSubstreamRequest` no longer
|
now. Consequently `ProtocolsHandlerEvent::OutboundSubstreamRequest` no longer
|
||||||
|
@ -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.21.0", path = "../core" }
|
libp2p-core = { version = "0.22.0", path = "../core" }
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
rand = "0.7"
|
rand = "0.7"
|
||||||
smallvec = "1.0"
|
smallvec = "1.0"
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
# 0.22.0 [unreleased]
|
||||||
|
|
||||||
|
- Bump `libp2p-core` dependency.
|
||||||
|
|
||||||
# 0.21.0 [2020-08-18]
|
# 0.21.0 [2020-08-18]
|
||||||
|
|
||||||
- Bump `libp2p-core` dependency.
|
- Bump `libp2p-core` dependency.
|
||||||
|
@ -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.21.0"
|
version = "0.22.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.21.0", path = "../../core" }
|
libp2p-core = { version = "0.22.0", path = "../../core" }
|
||||||
log = "0.4.1"
|
log = "0.4.1"
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
# 0.22.0 [unreleased]
|
||||||
|
|
||||||
|
- Bump `libp2p-core` dependency.
|
||||||
|
|
||||||
# 0.21.0 [2020-08-18]
|
# 0.21.0 [2020-08-18]
|
||||||
|
|
||||||
- Bump `libp2p-core` dependency.
|
- Bump `libp2p-core` dependency.
|
||||||
|
@ -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.21.0"
|
version = "0.22.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.21.0", path = "../../core" }
|
libp2p-core = { version = "0.22.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,7 @@
|
|||||||
|
# 0.22.0 [unreleased]
|
||||||
|
|
||||||
|
- Update `libp2p-core` dependency.
|
||||||
|
|
||||||
# 0.21.0 [2020-08-18]
|
# 0.21.0 [2020-08-18]
|
||||||
|
|
||||||
- Update `libp2p-core` dependency.
|
- Update `libp2p-core` dependency.
|
||||||
|
@ -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.21.0"
|
version = "0.22.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.21.0", path = "../../core" }
|
libp2p-core = { version = "0.22.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 }
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
# 0.22.0 [unreleased]
|
||||||
|
|
||||||
|
- Update `libp2p-core` dependency.
|
||||||
|
|
||||||
# 0.21.0 [2020-08-18]
|
# 0.21.0 [2020-08-18]
|
||||||
|
|
||||||
- Update `libp2p-core` dependency.
|
- Update `libp2p-core` dependency.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "libp2p-wasm-ext"
|
name = "libp2p-wasm-ext"
|
||||||
version = "0.21.0"
|
version = "0.22.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.21.0", path = "../../core" }
|
libp2p-core = { version = "0.22.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.23.0 [unreleased]
|
||||||
|
|
||||||
|
- Bump `libp2p-core` dependency.
|
||||||
|
|
||||||
# 0.22.0 [2020-08-18]
|
# 0.22.0 [2020-08-18]
|
||||||
|
|
||||||
- Bump `libp2p-core` dependency.
|
- Bump `libp2p-core` dependency.
|
||||||
|
@ -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.22.0"
|
version = "0.23.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"]
|
|||||||
async-tls = "0.8.0"
|
async-tls = "0.8.0"
|
||||||
either = "1.5.3"
|
either = "1.5.3"
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
libp2p-core = { version = "0.21.0", path = "../../core" }
|
libp2p-core = { version = "0.22.0", path = "../../core" }
|
||||||
log = "0.4.8"
|
log = "0.4.8"
|
||||||
quicksink = "0.1"
|
quicksink = "0.1"
|
||||||
rustls = "0.18.0"
|
rustls = "0.18.0"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user