diff --git a/Cargo.lock b/Cargo.lock index a16f60ad3..2f27b0cd1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -68,9 +68,9 @@ dependencies = [ [[package]] name = "aes-gcm" -version = "0.11.0-rc.4" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da8c919c118108f144adecad74b425b804ad075580d605d9b33c2d6d1c62a2f8" +checksum = "fdf011db2e21ce0d575593d749db5554b47fed37aff429e4dc50bc91ac93a028" dependencies = [ "aead", "aes 0.9.1", @@ -299,9 +299,9 @@ dependencies = [ [[package]] name = "arc-swap" -version = "1.9.1" +version = "1.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a3a1fd6f75306b68087b831f025c712524bcb19aad54e557b1129cfa0a2b207" +checksum = "c049c0be4daef0b145cb3555416b3b8ef5b7888a38aea1a3a155801fe7b0810b" dependencies = [ "rustversion", ] @@ -1809,9 +1809,9 @@ dependencies = [ [[package]] name = "chacha20poly1305" -version = "0.11.0-rc.3" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1c9ed179664f12fd6f155f6dd632edf5f3806d48c228c67ff78366f2a0eb6b5e" +checksum = "9b89e1c441e926b9c82a8d023f6e1b7ae0adcfaa7d621814e4d60789bac751cb" dependencies = [ "aead", "chacha20", diff --git a/Cargo.toml b/Cargo.toml index 8c9ab6c44..9023ca61a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -180,10 +180,10 @@ serde_urlencoded = "0.7.1" # matching stable releases are not available yet, while previous stable lines # have incompatible APIs. Keep them exact-pinned and monitor upstream for stable # releases. -aes-gcm = { version = "=0.11.0-rc.4", features = ["rand_core"] } +aes-gcm = { version = "=0.11.0", features = ["rand_core"] } argon2 = { version = "=0.6.0-rc.8" } blake2 = "=0.11.0-rc.6" -chacha20poly1305 = { version = "=0.11.0-rc.3" } +chacha20poly1305 = { version = "=0.11.0" } crc-fast = "1.10.0" hmac = { version = "0.13.0" } jsonwebtoken = { version = "10.4.0", features = ["aws_lc_rs"] }