diff --git a/Cargo.lock b/Cargo.lock index f7b14a4..e5e72fe 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,8 +4,9 @@ version = 4 [[package]] name = "aes" -version = "0.9.0-pre.2" -source = "git+https://github.com/RustCrypto/block-ciphers.git#bb7623cf85b416c8c61d89dd11573e6e7f961720" +version = "0.9.0-pre.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38e4da00d9978020ddaa556c1747cfcafc3f375cfadb109acfe8b752cfc373bf" dependencies = [ "cfg-if", "cipher", @@ -14,8 +15,9 @@ dependencies = [ [[package]] name = "belt-block" -version = "0.2.0-pre.2" -source = "git+https://github.com/RustCrypto/block-ciphers.git#bb7623cf85b416c8c61d89dd11573e6e7f961720" +version = "0.2.0-pre.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "20cce8d102fb5accb008983fb54f0975834bc5f7789080e6564b0f7e13ffe37a" dependencies = [ "cipher", ] @@ -116,8 +118,9 @@ dependencies = [ [[package]] name = "des" -version = "0.9.0-pre.2" -source = "git+https://github.com/RustCrypto/block-ciphers.git#bb7623cf85b416c8c61d89dd11573e6e7f961720" +version = "0.9.0-pre.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fee752f2df22a55f0f703c8eabfeb36990559e1b836263e35580a4186e1cca0a" dependencies = [ "cipher", ] @@ -173,8 +176,9 @@ dependencies = [ [[package]] name = "kuznyechik" -version = "0.9.0-pre.2" -source = "git+https://github.com/RustCrypto/block-ciphers.git#bb7623cf85b416c8c61d89dd11573e6e7f961720" +version = "0.9.0-pre.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "33cc36039d169faa75cbcb6b968251a878ec8431472d1688eb336cd1b459c0aa" dependencies = [ "cfg-if", "cipher", @@ -188,8 +192,9 @@ checksum = "875b3680cb2f8f71bdcf9a30f38d48282f5d3c95cbf9b3fa57269bb5d5c06828" [[package]] name = "magma" -version = "0.10.0-pre.2" -source = "git+https://github.com/RustCrypto/block-ciphers.git#bb7623cf85b416c8c61d89dd11573e6e7f961720" +version = "0.10.0-pre.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8cbf0a1d2178f9ed8ebf27ef13364749622d01abebc3a39937f622b020776465" dependencies = [ "cipher", ] diff --git a/Cargo.toml b/Cargo.toml index c9adbef..b8c3abb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,14 +1,13 @@ [workspace] -resolver = "2" -members = ["belt-mac", "cbc-mac", "cmac", "hmac", "pmac", "retail-mac"] +resolver = "3" +members = [ + "belt-mac", + "cbc-mac", + "cmac", + "hmac", + "pmac", + "retail-mac", +] [profile.dev] opt-level = 2 - -[patch.crates-io] -# https://github.com/RustCrypto/block-ciphers/pull/472 -aes = { git = "https://github.com/RustCrypto/block-ciphers.git" } -des = { git = "https://github.com/RustCrypto/block-ciphers.git" } -belt-block = { git = "https://github.com/RustCrypto/block-ciphers.git" } -kuznyechik = { git = "https://github.com/RustCrypto/block-ciphers.git" } -magma = { git = "https://github.com/RustCrypto/block-ciphers.git" } diff --git a/belt-mac/Cargo.toml b/belt-mac/Cargo.toml index 40d20cd..724efb1 100644 --- a/belt-mac/Cargo.toml +++ b/belt-mac/Cargo.toml @@ -13,7 +13,7 @@ keywords = ["crypto", "mac", "belt-mac"] categories = ["cryptography", "no-std"] [dependencies] -belt-block = "0.2.0-pre.2" +belt-block = "0.2.0-pre.3" cipher = "=0.5.0-pre.8" digest = { version = "=0.11.0-pre.10", features = ["mac"] } diff --git a/cbc-mac/Cargo.toml b/cbc-mac/Cargo.toml index 9a9ebbe..99a21bc 100644 --- a/cbc-mac/Cargo.toml +++ b/cbc-mac/Cargo.toml @@ -19,8 +19,8 @@ digest = { version = "=0.11.0-pre.10", features = ["mac"] } digest = { version = "=0.11.0-pre.10", features = ["dev"] } hex-literal = "1" -aes = "0.9.0-pre.2" -des = "0.9.0-pre.2" +aes = "0.9.0-pre.3" +des = "0.9.0-pre.3" [features] std = ["digest/std"] diff --git a/cmac/Cargo.toml b/cmac/Cargo.toml index e50ce7f..5fba25a 100644 --- a/cmac/Cargo.toml +++ b/cmac/Cargo.toml @@ -22,10 +22,10 @@ dbl = "0.4.0-rc.0" digest = { version = "=0.11.0-pre.10", features = ["dev"] } hex-literal = "1" -aes = "0.9.0-pre.2" -des = "0.9.0-pre.2" -kuznyechik = "0.9.0-pre.2" -magma = "0.10.0-pre.2" +aes = "0.9.0-pre.3" +des = "0.9.0-pre.3" +kuznyechik = "0.9.0-pre.3" +magma = "0.10.0-pre.3" [features] std = ["digest/std"] diff --git a/pmac/Cargo.toml b/pmac/Cargo.toml index 132dba1..bdb0fed 100644 --- a/pmac/Cargo.toml +++ b/pmac/Cargo.toml @@ -18,7 +18,7 @@ digest = { version = "=0.11.0-pre.10", features = ["mac"] } dbl = "0.4.0-rc.0" [dev-dependencies] -aes = "0.9.0-pre.2" +aes = "0.9.0-pre.3" digest = { version = "=0.11.0-pre.10", features = ["dev"] } [features]