Skip to content

Commit

Permalink
Use ^1 zeroize
Browse files Browse the repository at this point in the history
This PR allows the dependency on `zeroize` to float amongst whatever stable version might be in use by the project including this library. Not allowing it to float leads to incompatibilities with widely-used crates like `x25519-dalek` and `rsa`, which have older versions on pre-1.5 versions of `zeroize`.
  • Loading branch information
nhynes authored and bradfier committed Jun 14, 2022
1 parent b9d9e8a commit dd9c8dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ time = { version = "0.3", features = [ "std", "formatting", "macros", "parsing"
openssl = { version = "0.10", optional = true }
rustls = { version = "0.20", optional = true }
rustls-pemfile = { version = "0.2.1", optional = true }
zeroize = { version = "1.5.2", optional = true }
zeroize = { version = "1", optional = true }

[dev-dependencies]
rustc-serialize = "0.3"
Expand Down

0 comments on commit dd9c8dd

Please sign in to comment.