summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeal H. Walfield <neal@pep.foundation>2023-10-26 13:23:26 +0200
committerNeal H. Walfield <neal@pep.foundation>2023-10-26 13:51:38 +0200
commitdd0c54ddc78e819fbaf4754bae2be7a99cfedc8d (patch)
tree9ac5db82ee5c202e4802a4f6a191ae3d7d7da0f1
parent96711bf3a63a52daa6e5052cc3942e177001e3f3 (diff)
openpgp: Tighten win-crypto-ng version range
- Require version 0.5.1.
-rw-r--r--openpgp/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/openpgp/Cargo.toml b/openpgp/Cargo.toml
index 7630b5dd..cb5c791b 100644
--- a/openpgp/Cargo.toml
+++ b/openpgp/Cargo.toml
@@ -92,7 +92,7 @@ typenum = { version = "1.12.0", optional = true }
x25519-dalek = { version = "2", optional = true, default-features = false, features = ["static_secrets", "zeroize"] }
[target.'cfg(windows)'.dependencies]
-win-crypto-ng = { version = ">=0.4, <0.6", features = ["rand", "block-cipher"], optional = true }
+win-crypto-ng = { version = "0.5.1", features = ["rand", "block-cipher"], optional = true }
winapi = { version = "0.3.8", default-features = false, features = ["bcrypt"], optional = true }
[target.'cfg(all(target_arch = "wasm32", target_os = "unknown"))'.dependencies]