Skip to content

Commit

Permalink
chore: upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
blckngm committed Nov 1, 2023
1 parent 623561c commit b9eddaa
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
[workspace]
resolver = "2"
members = ["noise-protocol", "noise-rust-crypto", "noise-ring", "vectors"]
2 changes: 1 addition & 1 deletion noise-protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ keywords = ["noise"]
categories = ["cryptography"]

[dependencies]
arrayvec = { version = "0.7.2", default-features = false }
arrayvec = { version = "0.7.4", default-features = false }

[features]
default = ["use_std"]
Expand Down
2 changes: 1 addition & 1 deletion noise-ring/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ version = "0.2.0-rc.1"
description = "Ring wrappers for nosie-protocol."

[dependencies]
ring = "0.16"
ring = "0.17"
zeroize = "1"

[dependencies.noise-protocol]
Expand Down
6 changes: 3 additions & 3 deletions noise-rust-crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ use-blake2 = ["blake2"]
use-sha2 = ["sha2"]

[dependencies]
x25519-dalek = { version = "2.0.0-rc.2", optional = true, default-features = false }
aes-gcm = { version = "0.10.1", features = ["aes"], default-features = false, optional = true }
x25519-dalek = { version = "2.0.0", optional = true, default-features = false }
aes-gcm = { version = "0.10.3", features = ["aes"], default-features = false, optional = true }
chacha20poly1305 = { version = "0.10.1", optional = true }
blake2 = { version = "0.10.6", optional = true }
sha2 = { version = "0.10.6", optional = true, default-features = false }
sha2 = { version = "0.10.8", optional = true, default-features = false }
zeroize = { version = "1", default-features = false }

[dependencies.noise-protocol]
Expand Down

0 comments on commit b9eddaa

Please sign in to comment.