mirror of
https://github.com/fluencelabs/rust-libp2p
synced 2025-04-25 11:02:12 +00:00
*: Require at least if-watch v0.1.8 (#1956)
This commit is contained in:
parent
6499e924a3
commit
26f6b96d1e
@ -45,7 +45,8 @@
|
|||||||
|
|
||||||
- Use `libp2p-swarm-derive`, the former `libp2p-core-derive`.
|
- Use `libp2p-swarm-derive`, the former `libp2p-core-derive`.
|
||||||
|
|
||||||
- Update `libp2p-gossipsub`, `libp2p-request-response` and `libp2p-swarm`.
|
- Update `libp2p-gossipsub`, `libp2p-mdns`, `libp2p-request-response`,
|
||||||
|
`libp2p-swarm` and `libp2p-tcp`.
|
||||||
|
|
||||||
## Version 0.34.0 [2021-01-12]
|
## Version 0.34.0 [2021-01-12]
|
||||||
|
|
||||||
|
@ -86,8 +86,8 @@ 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.27.1", path = "transports/deflate", optional = true }
|
libp2p-deflate = { version = "0.27.1", path = "transports/deflate", optional = true }
|
||||||
libp2p-dns = { version = "0.27.0", path = "transports/dns", optional = true }
|
libp2p-dns = { version = "0.27.0", path = "transports/dns", optional = true }
|
||||||
libp2p-mdns = { version = "0.28.0", path = "protocols/mdns", optional = true }
|
libp2p-mdns = { version = "0.28.1", path = "protocols/mdns", optional = true }
|
||||||
libp2p-tcp = { version = "0.27.0", path = "transports/tcp", optional = true }
|
libp2p-tcp = { version = "0.27.1", path = "transports/tcp", optional = true }
|
||||||
libp2p-websocket = { version = "0.28.0", path = "transports/websocket", optional = true }
|
libp2p-websocket = { version = "0.28.0", path = "transports/websocket", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
# 0.28.1 [unreleased]
|
||||||
|
|
||||||
|
- Update dependencies.
|
||||||
|
|
||||||
# 0.28.0 [2021-01-12]
|
# 0.28.0 [2021-01-12]
|
||||||
|
|
||||||
- Update dependencies.
|
- Update dependencies.
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "libp2p-mdns"
|
name = "libp2p-mdns"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
version = "0.28.0"
|
version = "0.28.1"
|
||||||
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"
|
||||||
@ -14,7 +14,7 @@ async-io = "1.3.0"
|
|||||||
data-encoding = "2.3.1"
|
data-encoding = "2.3.1"
|
||||||
dns-parser = "0.8.0"
|
dns-parser = "0.8.0"
|
||||||
futures = "0.3.8"
|
futures = "0.3.8"
|
||||||
if-watch = "0.1.6"
|
if-watch = "0.1.8"
|
||||||
lazy_static = "1.4.0"
|
lazy_static = "1.4.0"
|
||||||
libp2p-core = { version = "0.27.0", path = "../../core" }
|
libp2p-core = { version = "0.27.0", path = "../../core" }
|
||||||
libp2p-swarm = { version = "0.27.0", path = "../../swarm" }
|
libp2p-swarm = { version = "0.27.0", path = "../../swarm" }
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
# 0.27.1 [unreleased]
|
||||||
|
|
||||||
|
- Update dependencies.
|
||||||
|
|
||||||
# 0.27.0 [2021-01-12]
|
# 0.27.0 [2021-01-12]
|
||||||
|
|
||||||
- Add support for port reuse and (re)add transport-specific
|
- Add support for port reuse and (re)add transport-specific
|
||||||
|
@ -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.27.0"
|
version = "0.27.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-io-crate = { package = "async-io", version = "1.2.0", optional = true }
|
async-io-crate = { package = "async-io", version = "1.2.0", optional = true }
|
||||||
futures = "0.3.8"
|
futures = "0.3.8"
|
||||||
futures-timer = "3.0"
|
futures-timer = "3.0"
|
||||||
if-watch = { version = "0.1.4", optional = true }
|
if-watch = { version = "0.1.8", optional = true }
|
||||||
if-addrs = { version = "0.6.4", optional = true }
|
if-addrs = { version = "0.6.4", optional = true }
|
||||||
ipnet = "2.0.0"
|
ipnet = "2.0.0"
|
||||||
libc = "0.2.80"
|
libc = "0.2.80"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user