*: Require at least if-watch v0.1.8 (#1956)

This commit is contained in:
Max Inden 2021-02-15 16:11:30 +01:00 committed by GitHub
parent 6499e924a3
commit 26f6b96d1e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 16 additions and 7 deletions

View File

@ -45,7 +45,8 @@
- 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]

View File

@ -86,8 +86,8 @@ wasm-timer = "0.2.4"
[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-dns = { version = "0.27.0", path = "transports/dns", optional = true }
libp2p-mdns = { version = "0.28.0", path = "protocols/mdns", optional = true }
libp2p-tcp = { version = "0.27.0", path = "transports/tcp", optional = true }
libp2p-mdns = { version = "0.28.1", path = "protocols/mdns", optional = true }
libp2p-tcp = { version = "0.27.1", path = "transports/tcp", optional = true }
libp2p-websocket = { version = "0.28.0", path = "transports/websocket", optional = true }
[dev-dependencies]

View File

@ -1,3 +1,7 @@
# 0.28.1 [unreleased]
- Update dependencies.
# 0.28.0 [2021-01-12]
- Update dependencies.

View File

@ -1,7 +1,7 @@
[package]
name = "libp2p-mdns"
edition = "2018"
version = "0.28.0"
version = "0.28.1"
description = "Implementation of the libp2p mDNS discovery method"
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT"
@ -14,7 +14,7 @@ async-io = "1.3.0"
data-encoding = "2.3.1"
dns-parser = "0.8.0"
futures = "0.3.8"
if-watch = "0.1.6"
if-watch = "0.1.8"
lazy_static = "1.4.0"
libp2p-core = { version = "0.27.0", path = "../../core" }
libp2p-swarm = { version = "0.27.0", path = "../../swarm" }

View File

@ -1,3 +1,7 @@
# 0.27.1 [unreleased]
- Update dependencies.
# 0.27.0 [2021-01-12]
- Add support for port reuse and (re)add transport-specific

View File

@ -2,7 +2,7 @@
name = "libp2p-tcp"
edition = "2018"
description = "TCP/IP transport protocol for libp2p"
version = "0.27.0"
version = "0.27.1"
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT"
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 }
futures = "0.3.8"
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 }
ipnet = "2.0.0"
libc = "0.2.80"