Skip to content

Commit 9c5dd84

Browse files
build(deps): Update snow requirement from 0.7.1 to 0.8.0 (#2068)
* build(deps): Update snow requirement from 0.7.1 to 0.8.0 Updates the requirements on [snow](https://github.com/mcginty/snow) to permit the latest version. - [Release notes](https://github.com/mcginty/snow/releases) - [Commits](mcginty/snow@v0.7.1...v0.8.0) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Max Inden <[email protected]>
1 parent 1fdac07 commit 9c5dd84

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
- Update individual crates.
4747
- `libp2p-core`
4848
- `libp2p-gossipsub`
49+
- `libp2p-noise`
4950
- `libp2p-pnet`
5051
- `libp2p-wasm-ext`
5152

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ libp2p-gossipsub = { version = "0.30.1", path = "./protocols/gossipsub", optiona
7070
libp2p-identify = { version = "0.29.0", path = "protocols/identify", optional = true }
7171
libp2p-kad = { version = "0.30.0", path = "protocols/kad", optional = true }
7272
libp2p-mplex = { version = "0.28.0", path = "muxers/mplex", optional = true }
73-
libp2p-noise = { version = "0.30.0", path = "transports/noise", optional = true }
73+
libp2p-noise = { version = "0.31.0", path = "transports/noise", optional = true }
7474
libp2p-ping = { version = "0.29.0", path = "protocols/ping", optional = true }
7575
libp2p-plaintext = { version = "0.28.0", path = "transports/plaintext", optional = true }
7676
libp2p-pnet = { version = "0.21.0", path = "transports/pnet", optional = true }

transports/noise/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 0.31.0 [unreleased]
2+
3+
- Update to `snow` `v0.8.0` ([PR-2068]).
4+
5+
[PR-2068]: https://github.com/libp2p/rust-libp2p/pull/2068
6+
17
# 0.30.0 [2021-03-17]
28

39
- Update `libp2p-core`.

transports/noise/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "libp2p-noise"
33
description = "Cryptographic handshake protocol using the noise framework."
4-
version = "0.30.0"
4+
version = "0.31.0"
55
authors = ["Parity Technologies <[email protected]>"]
66
license = "MIT"
77
repository = "https://github.com/libp2p/rust-libp2p"
@@ -15,17 +15,17 @@ lazy_static = "1.2"
1515
libp2p-core = { version = "0.28.0", path = "../../core" }
1616
log = "0.4"
1717
prost = "0.7"
18-
rand = "0.7.2"
18+
rand = "0.8.3"
1919
sha2 = "0.9.1"
2020
static_assertions = "1"
2121
x25519-dalek = "1.1.0"
2222
zeroize = "1"
2323

2424
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
25-
snow = { version = "0.7.1", features = ["ring-resolver"], default-features = false }
25+
snow = { version = "0.8.0", features = ["ring-resolver"], default-features = false }
2626

2727
[target.'cfg(target_arch = "wasm32")'.dependencies]
28-
snow = { version = "0.7.1", features = ["default-resolver"], default-features = false }
28+
snow = { version = "0.8.0", features = ["default-resolver"], default-features = false }
2929

3030
[dev-dependencies]
3131
async-io = "1.2.0"

0 commit comments

Comments
 (0)