diff --git a/Cargo.lock b/Cargo.lock index 939a2788..703fb6bf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -150,8 +150,9 @@ checksum = "4a859067dcb257cb2ae028cb821399b55140b76fb8b2a360e052fe109019db43" [[package]] name = "block-buffer" -version = "0.11.0-rc.4" -source = "git+https://github.com/RustCrypto/utils#adfccfea2686ef191b607f653cc3587753b6ec66" +version = "0.11.0-rc.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e9ef36a6fcdb072aa548f3da057640ec10859eb4e91ddf526ee648d50c76a949" dependencies = [ "hybrid-array", "zeroize", @@ -211,8 +212,9 @@ dependencies = [ [[package]] name = "cipher" -version = "0.5.0-rc.0" -source = "git+https://github.com/RustCrypto/traits#5202618e4596f30146380c595e0b1c279253e419" +version = "0.5.0-rc.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e12a13eb01ded5d32ee9658d94f553a19e804204f2dc811df69ab4d9e0cb8c7" dependencies = [ "block-buffer", "crypto-common", @@ -241,8 +243,9 @@ dependencies = [ [[package]] name = "crypto-common" -version = "0.2.0-rc.3" -source = "git+https://github.com/RustCrypto/traits#5202618e4596f30146380c595e0b1c279253e419" +version = "0.2.0-rc.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6a8235645834fbc6832939736ce2f2d08192652269e11010a6240f61b908a1c6" dependencies = [ "hybrid-array", "rand_core", @@ -277,8 +280,9 @@ dependencies = [ [[package]] name = "digest" -version = "0.11.0-rc.0" -source = "git+https://github.com/RustCrypto/traits#5202618e4596f30146380c595e0b1c279253e419" +version = "0.11.0-rc.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3a4aae35a0fcbe22ff1be50fe96df72002d5a4a6fb4aae9193cf2da0daa36da2" dependencies = [ "block-buffer", "crypto-common", @@ -361,8 +365,9 @@ dependencies = [ [[package]] name = "inout" -version = "0.2.0-rc.5" -source = "git+https://github.com/RustCrypto/utils#adfccfea2686ef191b607f653cc3587753b6ec66" +version = "0.2.0-rc.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1603f76010ff924b616c8f44815a42eb10fb0b93d308b41deaa8da6d4251fd4b" dependencies = [ "hybrid-array", ] diff --git a/Cargo.toml b/Cargo.toml index 3b7da696..a96a5481 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,23 +21,13 @@ aes-gcm = { path = "aes-gcm" } # https://github.com/RustCrypto/block-modes/pull/84 belt-ctr = { git = "https://github.com/RustCrypto/block-modes" } -# https://github.com/RustCrypto/utils/pull/1208 -block-buffer = { git = "https://github.com/RustCrypto/utils" } # https://github.com/RustCrypto/stream-ciphers/pull/450 chacha20 = { git = "https://github.com/RustCrypto/stream-ciphers" } -# https://github.com/RustCrypto/traits/pull/1976 -cipher = { git = "https://github.com/RustCrypto/traits" } # https://github.com/RustCrypto/MACs/pull/206 cmac = { git = "https://github.com/RustCrypto/MACs" } -# https://github.com/RustCrypto/traits/pull/1976 -crypto-common = { git = "https://github.com/RustCrypto/traits" } # https://github.com/RustCrypto/block-modes/pull/84 ctr = { git = "https://github.com/RustCrypto/block-modes" } # https://github.com/RustCrypto/utils/pull/1208 dbl = { git = "https://github.com/RustCrypto/utils" } -# https://github.com/RustCrypto/traits/pull/1976 -digest = { git = "https://github.com/RustCrypto/traits" } -# https://github.com/RustCrypto/utils/pull/1208 -inout = { git = "https://github.com/RustCrypto/utils" } # https://github.com/RustCrypto/MACs/pull/206 pmac = { git = "https://github.com/RustCrypto/MACs" } diff --git a/aes-gcm-siv/Cargo.toml b/aes-gcm-siv/Cargo.toml index 2c90b6c9..171a1dc6 100644 --- a/aes-gcm-siv/Cargo.toml +++ b/aes-gcm-siv/Cargo.toml @@ -19,7 +19,7 @@ rust-version = "1.85" [dependencies] aead = { version = "0.6.0-rc.1", default-features = false } aes = { version = "0.9.0-rc.0", optional = true } -cipher = "0.5.0-rc.0" +cipher = "0.5.0-rc.1" ctr = "0.10.0-rc.0" polyval = { version = "0.7.0-rc.1", default-features = false } subtle = { version = "2", default-features = false } diff --git a/aes-gcm/Cargo.toml b/aes-gcm/Cargo.toml index afc4b0c1..a5d628a2 100644 --- a/aes-gcm/Cargo.toml +++ b/aes-gcm/Cargo.toml @@ -19,7 +19,7 @@ rust-version = "1.85" [dependencies] aead = { version = "0.6.0-rc.1", default-features = false } aes = { version = "0.9.0-rc.0", optional = true } -cipher = "0.5.0-rc.0" +cipher = "0.5.0-rc.1" ctr = "0.10.0-rc.0" ghash = { version = "0.6.0-rc.1", default-features = false } subtle = { version = "2", default-features = false } diff --git a/aes-siv/Cargo.toml b/aes-siv/Cargo.toml index 014b6f82..9a1d0117 100644 --- a/aes-siv/Cargo.toml +++ b/aes-siv/Cargo.toml @@ -19,7 +19,7 @@ rust-version = "1.85" [dependencies] aead = "0.6.0-rc.1" aes = "0.9.0-rc.0" -cipher = "0.5.0-rc.0" +cipher = "0.5.0-rc.1" cmac = "0.8.0-rc.0" ctr = "0.10.0-rc.0" dbl = "0.5.0-pre" diff --git a/ccm/Cargo.toml b/ccm/Cargo.toml index 325f7fce..b0a6307d 100644 --- a/ccm/Cargo.toml +++ b/ccm/Cargo.toml @@ -15,7 +15,7 @@ rust-version = "1.85" [dependencies] aead = { version = "0.6.0-rc.1", default-features = false } -cipher = { version = "0.5.0-rc.0", default-features = false } +cipher = { version = "0.5.0-rc.1", default-features = false } ctr = { version = "0.10.0-rc.0", default-features = false } subtle = { version = "2", default-features = false } diff --git a/chacha20poly1305/Cargo.toml b/chacha20poly1305/Cargo.toml index 189293e5..7909b6bc 100644 --- a/chacha20poly1305/Cargo.toml +++ b/chacha20poly1305/Cargo.toml @@ -22,7 +22,7 @@ rust-version = "1.85" [dependencies] aead = { version = "0.6.0-rc.1", default-features = false } chacha20 = { version = "0.10.0-rc.0", default-features = false, features = ["xchacha"] } -cipher = "0.5.0-rc.0" +cipher = "0.5.0-rc.1" poly1305 = "0.9.0-rc.1" zeroize = { version = "1.8", optional = true, default-features = false } diff --git a/eax/Cargo.toml b/eax/Cargo.toml index aade22aa..a99383ba 100644 --- a/eax/Cargo.toml +++ b/eax/Cargo.toml @@ -21,7 +21,7 @@ rust-version = "1.85" [dependencies] aead = { version = "0.6.0-rc.1", default-features = false } -cipher = "0.5.0-rc.0" +cipher = "0.5.0-rc.1" cmac = "0.8.0-rc.0" ctr = "0.10.0-rc.0" subtle = { version = "2", default-features = false } diff --git a/ocb3/Cargo.toml b/ocb3/Cargo.toml index 4c87afe5..be10c3b7 100644 --- a/ocb3/Cargo.toml +++ b/ocb3/Cargo.toml @@ -17,7 +17,7 @@ rust-version = "1.85" [dependencies] aead = { version = "0.6.0-rc.1", default-features = false } -cipher = "0.5.0-rc.0" +cipher = "0.5.0-rc.1" ctr = "0.10.0-rc.0" dbl = "0.5.0-pre" subtle = { version = "2", default-features = false } diff --git a/xaes-256-gcm/Cargo.toml b/xaes-256-gcm/Cargo.toml index 4646a348..20bf00a4 100644 --- a/xaes-256-gcm/Cargo.toml +++ b/xaes-256-gcm/Cargo.toml @@ -19,7 +19,7 @@ rust-version = "1.85" aead = { version = "0.6.0-rc.1", default-features = false } aes = "0.9.0-rc.0" aes-gcm = { version = "0.11.0-rc.0", default-features = false, features = ["aes"] } -cipher = "0.5.0-rc.0" +cipher = "0.5.0-rc.1" aead-stream = { version = "0.6.0-rc.0", optional = true, default-features = false } [dev-dependencies]