diff --git a/Cargo.lock b/Cargo.lock index 703fb6bf..e85d6d14 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -261,8 +261,9 @@ dependencies = [ [[package]] name = "dbl" -version = "0.5.0-pre" -source = "git+https://github.com/RustCrypto/utils#adfccfea2686ef191b607f653cc3587753b6ec66" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0d7a944e61df464668c5f51f56cc667396a8821434273112948ea0b66e405d7" dependencies = [ "hybrid-array", ] diff --git a/Cargo.toml b/Cargo.toml index a96a5481..88099b7d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,7 +27,5 @@ chacha20 = { git = "https://github.com/RustCrypto/stream-ciphers" } cmac = { git = "https://github.com/RustCrypto/MACs" } # 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/MACs/pull/206 pmac = { git = "https://github.com/RustCrypto/MACs" } diff --git a/aes-siv/Cargo.toml b/aes-siv/Cargo.toml index 9a1d0117..89e66e10 100644 --- a/aes-siv/Cargo.toml +++ b/aes-siv/Cargo.toml @@ -22,7 +22,7 @@ aes = "0.9.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" +dbl = "0.5" digest = { version = "0.11.0-rc.0", features = ["mac"] } zeroize = { version = "1", optional = true, default-features = false } diff --git a/ocb3/Cargo.toml b/ocb3/Cargo.toml index be10c3b7..42f9a84a 100644 --- a/ocb3/Cargo.toml +++ b/ocb3/Cargo.toml @@ -19,7 +19,7 @@ rust-version = "1.85" aead = { version = "0.6.0-rc.1", default-features = false } cipher = "0.5.0-rc.1" ctr = "0.10.0-rc.0" -dbl = "0.5.0-pre" +dbl = "0.5" subtle = { version = "2", default-features = false } aead-stream = { version = "0.6.0-rc.0", optional = true, default-features = false } zeroize = { version = "1", optional = true, default-features = false }