diff --git a/CHANGELOG.md b/CHANGELOG.md index 14f20a9..556e82e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changes * Updated `x25519-dalek` to 2.0 +* Updated `subtle` to 2.5 ## [0.10.0] - 2022-10-01 diff --git a/Cargo.toml b/Cargo.toml index 5a3aad9..35eb05b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,7 @@ p256 = { version = "0.13", default-features = false, features = ["arithmetic", " p384 = { version = "0.13", default-features = false, features = ["arithmetic", "ecdh"], optional = true} sha2 = { version = "0.10", default-features = false } serde = { version = "1.0", default-features = false, optional = true } -subtle = { version = "2.4", default-features = false } +subtle = { version = "2.5", default-features = false } x25519-dalek = { version = "2", default-features = false, features = ["static_secrets"], optional = true } zeroize = { version = "1", default-features = false, features = ["zeroize_derive"] }