diff --git a/Cargo.lock b/Cargo.lock index 1c6366b..b59acd9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,9 +4,9 @@ version = 4 [[package]] name = "aes" -version = "0.9.0-rc.0" +version = "0.9.0-rc.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd4838e4ad37bb032dea137f441d5f71c16c26c068af512e64c5bc13a88cdfc7" +checksum = "7e713c57c2a2b19159e7be83b9194600d7e8eb3b7c2cd67e671adf47ce189a05" dependencies = [ "cfg-if", "cipher", @@ -15,9 +15,9 @@ dependencies = [ [[package]] name = "belt-block" -version = "0.2.0-rc.0" +version = "0.2.0-rc.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9aa0cd4ec3b89021a53caa73cefc5a458cf33b338498e1191916153877bd794" +checksum = "c4bbddee901eea0f5448cfcc94ea6390d0ee0f3ca8d0308fe34e37553f856640" dependencies = [ "cipher", ] @@ -179,9 +179,9 @@ dependencies = [ [[package]] name = "kuznyechik" -version = "0.9.0-rc.0" +version = "0.9.0-rc.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "074a7089016bcddb3b8da42f663296a885f8a31ec57a7b795a92b711999ff5aa" +checksum = "e39eb5f1f53d41c9341e559c72a732db17619643679116d56ca0af8b34cb8b26" dependencies = [ "cfg-if", "cipher", @@ -195,9 +195,9 @@ checksum = "875b3680cb2f8f71bdcf9a30f38d48282f5d3c95cbf9b3fa57269bb5d5c06828" [[package]] name = "magma" -version = "0.10.0-rc.0" +version = "0.10.0-rc.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d6704a51253dc03b397da9121342836759922371190e5755ccfb21c4db9cef4" +checksum = "47c60b0343c651857c53e0072315831622d550efeb663a589bbd3fdd83073da0" dependencies = [ "cipher", ] diff --git a/belt-ctr/Cargo.toml b/belt-ctr/Cargo.toml index ce96dbc..02e95f4 100644 --- a/belt-ctr/Cargo.toml +++ b/belt-ctr/Cargo.toml @@ -14,11 +14,11 @@ categories = ["cryptography", "no-std"] [dependencies] cipher = { version = "0.5.0-rc.1", features = ["stream-wrapper"] } -belt-block = "0.2.0-rc.0" +belt-block = "0.2.0-rc.1" [dev-dependencies] hex-literal = "1" -belt-block = "0.2.0-rc.0" +belt-block = "0.2.0-rc.1" cipher = { version = "0.5.0-rc.1", features = ["dev"] } [features] diff --git a/cbc/Cargo.toml b/cbc/Cargo.toml index b7fb141..23d41a1 100644 --- a/cbc/Cargo.toml +++ b/cbc/Cargo.toml @@ -16,7 +16,7 @@ categories = ["cryptography", "no-std"] cipher = "0.5.0-rc.1" [dev-dependencies] -aes = "0.9.0-rc.0" +aes = "0.9.0-rc.1" cipher = { version = "0.5.0-rc.1", features = ["dev"] } hex-literal = "1" diff --git a/cfb-mode/Cargo.toml b/cfb-mode/Cargo.toml index c471ee1..e05832f 100644 --- a/cfb-mode/Cargo.toml +++ b/cfb-mode/Cargo.toml @@ -16,8 +16,8 @@ categories = ["cryptography", "no-std"] cipher = "0.5.0-rc.1" [dev-dependencies] -aes = "0.9.0-rc.0" -belt-block = "0.2.0-rc.0" +aes = "0.9.0-rc.1" +belt-block = "0.2.0-rc.1" cipher = { version = "0.5.0-rc.1", features = ["dev"] } hex-literal = "1" diff --git a/cfb8/Cargo.toml b/cfb8/Cargo.toml index a34b88d..a79a320 100644 --- a/cfb8/Cargo.toml +++ b/cfb8/Cargo.toml @@ -16,7 +16,7 @@ categories = ["cryptography", "no-std"] cipher = "0.5.0-rc.1" [dev-dependencies] -aes = "0.9.0-rc.0" +aes = "0.9.0-rc.1" cipher = { version = "0.5.0-rc.1", features = ["dev"] } hex-literal = "1" diff --git a/ctr/Cargo.toml b/ctr/Cargo.toml index a5b43b9..f073810 100644 --- a/ctr/Cargo.toml +++ b/ctr/Cargo.toml @@ -16,9 +16,9 @@ categories = ["cryptography", "no-std"] cipher = { version = "0.5.0-rc.1", features = ["stream-wrapper"] } [dev-dependencies] -aes = "0.9.0-rc.0" -magma = "0.10.0-rc.0" -kuznyechik = "0.9.0-rc.0" +aes = "0.9.0-rc.1" +magma = "0.10.0-rc.1" +kuznyechik = "0.9.0-rc.1" cipher = { version = "0.5.0-rc.1", features = ["dev"] } hex-literal = "1" diff --git a/cts/Cargo.toml b/cts/Cargo.toml index 170b8e6..8e1bb29 100644 --- a/cts/Cargo.toml +++ b/cts/Cargo.toml @@ -18,8 +18,8 @@ cipher = "0.5.0-rc.1" [dev-dependencies] cipher = { version = "0.5.0-rc.1", features = ["dev"] } hex-literal = "1" -aes = "0.9.0-rc.0" -belt-block = "0.2.0-rc.0" +aes = "0.9.0-rc.1" +belt-block = "0.2.0-rc.1" [package.metadata.docs.rs] all-features = true diff --git a/ige/Cargo.toml b/ige/Cargo.toml index 702270b..a75992b 100644 --- a/ige/Cargo.toml +++ b/ige/Cargo.toml @@ -16,7 +16,7 @@ categories = ["cryptography", "no-std"] cipher = "0.5.0-rc.1" [dev-dependencies] -aes = "0.9.0-rc.0" +aes = "0.9.0-rc.1" cipher = { version = "0.5.0-rc.1", features = ["dev"] } hex-literal = "1" diff --git a/ofb/Cargo.toml b/ofb/Cargo.toml index b180fd3..b5308ad 100644 --- a/ofb/Cargo.toml +++ b/ofb/Cargo.toml @@ -16,7 +16,7 @@ categories = ["cryptography", "no-std"] cipher = { version = "0.5.0-rc.1", features = ["stream-wrapper"] } [dev-dependencies] -aes = "0.9.0-rc.0" +aes = "0.9.0-rc.1" cipher = { version = "0.5.0-rc.1", features = ["dev"] } hex-literal = "1" diff --git a/pcbc/Cargo.toml b/pcbc/Cargo.toml index 6c40f06..c6ce6fb 100644 --- a/pcbc/Cargo.toml +++ b/pcbc/Cargo.toml @@ -16,7 +16,7 @@ categories = ["cryptography", "no-std"] cipher = "0.5.0-rc.1" [dev-dependencies] -aes = "0.9.0-rc.0" +aes = "0.9.0-rc.1" cipher = { version = "0.5.0-rc.1", features = ["dev"] } hex-literal = "1"