diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-07-05 12:10:51 -0400 |
---|---|---|
committer | David Sherret <dsherret@users.noreply.github.com> | 2022-07-05 14:24:40 -0400 |
commit | 9d061c9e68301ad2487e5594fd0341026af409e4 (patch) | |
tree | cea82358a6107fe8eae5c3ca40d354da6e738c45 | |
parent | ef312e00504e1293b234f74c28f1cfc4fad4da9e (diff) |
chore: pin aes-gcm to fix cargo publish (#15084)
-rw-r--r-- | ext/crypto/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/crypto/Cargo.toml b/ext/crypto/Cargo.toml index df46101f6..11506d066 100644 --- a/ext/crypto/Cargo.toml +++ b/ext/crypto/Cargo.toml @@ -17,7 +17,7 @@ path = "lib.rs" aes = "0.8.1" # TODO(@littledivy): Move to stable release # https://github.com/RustCrypto/AEADs/issues/411 -aes-gcm = "0.10.0-pre" +aes-gcm = "=0.10.0-pre" aes-kw = { version = "0.2.1", features = ["alloc"] } base64 = "0.13.0" block-modes = "0.9.1" |