diff --git a/CHANGELOG.md b/CHANGELOG.md index d89647c..e1d6337 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/noise-protocol/Cargo.toml b/noise-protocol/Cargo.toml index 530b7c5..6038daa 100644 --- a/noise-protocol/Cargo.toml +++ b/noise-protocol/Cargo.toml @@ -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"] diff --git a/noise-ring/Cargo.toml b/noise-ring/Cargo.toml index 17d17d2..d06fdb8 100644 --- a/noise-ring/Cargo.toml +++ b/noise-ring/Cargo.toml @@ -5,8 +5,8 @@ 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" @@ -14,4 +14,4 @@ zeroize = "1" [dependencies.noise-protocol] path = "../noise-protocol" -version = "0.2.0-rc.1" +version = "0.2.1" diff --git a/noise-rust-crypto/Cargo.toml b/noise-rust-crypto/Cargo.toml index a246761..05571e5 100644 --- a/noise-rust-crypto/Cargo.toml +++ b/noise-rust-crypto/Cargo.toml @@ -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] @@ -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 } @@ -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] diff --git a/vectors/Cargo.toml b/vectors/Cargo.toml index ecda0a6..289f0ac 100644 --- a/vectors/Cargo.toml +++ b/vectors/Cargo.toml @@ -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"