Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# noise-rust-crypto 0.6.3

* Update x25519-dalek dependency to 2.0.1

# noise-protocol 0.2.1

* Update arrayvec dependency to 0.7.6

# noise-protocol 0.1.4

* Update arrayvec dependency to 0.7.2
Expand Down
4 changes: 2 additions & 2 deletions noise-protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ license = "Unlicense"
name = "noise-protocol"
readme = "README.md"
repository = "https://github.com/sopium/noise-rust"
version = "0.2.0"
version = "0.2.1"
description = "Noise Protocol Framework implementation."
keywords = ["noise"]
categories = ["cryptography"]

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

[features]
default = ["use_std"]
Expand Down
6 changes: 3 additions & 3 deletions noise-ring/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ license = "Unlicense"
name = "noise-ring"
readme = "README.md"
repository = "https://github.com/sopium/noise-rust"
version = "0.2.0"
description = "Ring wrappers for nosie-protocol."
version = "0.2.1"
description = "Ring wrappers for noise-protocol."

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

[dependencies.noise-protocol]
path = "../noise-protocol"
version = "0.2.0-rc.1"
version = "0.2.1"
6 changes: 3 additions & 3 deletions noise-rust-crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ license = "Unlicense"
name = "noise-rust-crypto"
readme = "README.md"
repository = "https://github.com/sopium/noise-rust"
version = "0.6.2"
version = "0.6.3"
description = "Wrappers of dalek and RustCrypto crates for noise-protocol"

[features]
Expand All @@ -18,7 +18,7 @@ use-blake2 = ["blake2"]
use-sha2 = ["sha2"]

[dependencies]
x25519-dalek = { version = "2.0.0", optional = true, default-features = false }
x25519-dalek = { version = "2.0.1", optional = true, default-features = false }
aes-gcm = { version = "0.10.3", features = ["aes"], default-features = false, optional = true }
chacha20poly1305 = { version = "0.10.1", default-features = false, optional = true }
blake2 = { version = "0.10.6", optional = true }
Expand All @@ -27,7 +27,7 @@ zeroize = { version = "1", default-features = false }

[dependencies.noise-protocol]
path = "../noise-protocol"
version = "0.2.0"
version = "0.2.1"
default-features = false

[dev-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions vectors/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ build = "build.rs"

[dev-dependencies]
hex = "0.4.3"
lazy_static = "1.4"
lazy_static = "1.5"
noise-protocol = { path = "../noise-protocol" }
noise-ring = { path = "../noise-ring" }
noise-rust-crypto = { path = "../noise-rust-crypto" }
rayon = "1.7"
regex = "1.7"
rayon = "1.10"
regex = "1.11"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
Loading