-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
transports/noise: Update to snow 0.8.0 (#2272)
* transports/noise: Bump snow and rand * transports/noise: Bump crate version * transports/noise: Fix compilation with additional generic-array features (#2264) For crate that depends on `generic-array = { version = "0.14.3", features = ["serde", "more_lengths"] }` It's seems that `as_ref()` is ambiguous. * .github/workflows/ci.yml: Use clang 11 (#2233) * transports/noise/CHANGELOG: Add entry Co-authored-by: Alexander Popiak <[email protected]> Co-authored-by: Sztergbaum Roman <[email protected]>
- Loading branch information
1 parent
0934b01
commit aab2f66
Showing
4 changed files
with
13 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "libp2p-noise" | ||
description = "Cryptographic handshake protocol using the noise framework." | ||
version = "0.30.0" | ||
version = "0.30.1" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
license = "MIT" | ||
repository = "https://github.com/libp2p/rust-libp2p" | ||
|
@@ -15,17 +15,17 @@ lazy_static = "1.2" | |
libp2p-core = { version = "0.28.0", path = "../../core" } | ||
log = "0.4" | ||
prost = "0.7" | ||
rand = "0.7.2" | ||
rand = "0.8.3" | ||
sha2 = "0.9.1" | ||
static_assertions = "1" | ||
x25519-dalek = "1.1.0" | ||
zeroize = "1" | ||
|
||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies] | ||
snow = { version = "0.7.1", features = ["ring-resolver"], default-features = false } | ||
snow = { version = "0.8.0", features = ["ring-resolver"], default-features = false } | ||
|
||
[target.'cfg(target_arch = "wasm32")'.dependencies] | ||
snow = { version = "0.7.1", features = ["default-resolver"], default-features = false } | ||
snow = { version = "0.8.0", features = ["default-resolver"], default-features = false } | ||
|
||
[dev-dependencies] | ||
async-io = "1.2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters