diff --git a/Cargo.lock b/Cargo.lock index 96e305d8..5100704d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -141,8 +141,9 @@ dependencies = [ [[package]] name = "cmac" -version = "0.6.0-pre" -source = "git+https://github.com/RustCrypto/MACs.git#6aa7c2075833ea7cca284780956720d1fe3dae96" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b70e37282d9624283878ffda1d1e53883bcf868cf441bddda44127620b39572d" dependencies = [ "crypto-mac", "dbl", @@ -359,8 +360,9 @@ checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" [[package]] name = "pmac" -version = "0.6.0-pre" -source = "git+https://github.com/RustCrypto/MACs.git#6aa7c2075833ea7cca284780956720d1fe3dae96" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "42d8c6aafab3b7131a8be27ae259e545c20c067163c39897419686684de0e013" dependencies = [ "crypto-mac", "dbl", diff --git a/Cargo.toml b/Cargo.toml index 920e0aad..5693333a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,5 @@ members = [ [patch.crates-io] chacha20 = { git = "https://github.com/RustCrypto/stream-ciphers.git" } -cmac = { git = "https://github.com/RustCrypto/MACs.git" } kuznyechik = { git = "https://github.com/RustCrypto/block-ciphers.git" } -pmac = { git = "https://github.com/RustCrypto/MACs.git" } salsa20 = { git = "https://github.com/RustCrypto/stream-ciphers.git" } diff --git a/aes-siv/Cargo.toml b/aes-siv/Cargo.toml index 60642ca3..050b7aff 100644 --- a/aes-siv/Cargo.toml +++ b/aes-siv/Cargo.toml @@ -19,11 +19,11 @@ categories = ["cryptography", "no-std"] aead = "0.4" aes = "0.7" cipher = "0.3" -cmac = "=0.6.0-pre" +cmac = "0.6" crypto-mac = "0.11" ctr = "0.7" dbl = "0.3" -pmac = "=0.6.0-pre" +pmac = "0.6" zeroize = { version = "1", default-features = false } [dev-dependencies] diff --git a/eax/Cargo.toml b/eax/Cargo.toml index 6c951ae4..ca73b5a7 100644 --- a/eax/Cargo.toml +++ b/eax/Cargo.toml @@ -21,7 +21,7 @@ categories = ["cryptography", "no-std"] [dependencies] aead = { version = "0.4", default-features = false } cipher = "0.3" -cmac = "=0.6.0-pre" +cmac = "0.6" ctr = "0.7" subtle = { version = "2", default-features = false }