diff --git a/Cargo.lock b/Cargo.lock index 323fe977..ec5824ec 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -194,7 +194,7 @@ dependencies = [ "blobby", "block-buffer", "const-oid", - "crypto-common 0.2.0-rc.1 (registry+https://github.com/rust-lang/crates.io-index)", + "crypto-common 0.2.0-rc.1", "subtle", "zeroize", ] @@ -221,7 +221,8 @@ dependencies = [ "digest 0.11.0-pre.9 (registry+https://github.com/rust-lang/crates.io-index)", "ff", "group", - "hex-literal", + "hex-literal 0.4.1", + "hex-literal 1.0.0", "hkdf", "hybrid-array 0.2.3", "pem-rfc7468", @@ -313,6 +314,12 @@ version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6fe2267d4ed49bc07b63801559be28c718ea06c4738b7a03c94df7386d2cde46" +[[package]] +name = "hex-literal" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bcaaec4551594c969335c98c903c1397853d4198408ea609190f420500f6be71" + [[package]] name = "hkdf" version = "0.13.0-pre.4" @@ -565,7 +572,7 @@ name = "signature" version = "2.3.0-pre.6" dependencies = [ "digest 0.11.0-pre.9 (registry+https://github.com/rust-lang/crates.io-index)", - "hex-literal", + "hex-literal 1.0.0", "rand_core 0.9.2", "sha2", "signature_derive", @@ -645,7 +652,7 @@ checksum = "00e2473a93778eb0bad35909dff6a10d28e63f792f16ed15e404fca9d5eeedbe" name = "universal-hash" version = "0.6.0-rc.0" dependencies = [ - "crypto-common 0.2.0-rc.1 (registry+https://github.com/rust-lang/crates.io-index)", + "crypto-common 0.2.0-rc.1", "subtle", ] diff --git a/digest/Cargo.toml b/digest/Cargo.toml index 6838a29c..3612efd6 100644 --- a/digest/Cargo.toml +++ b/digest/Cargo.toml @@ -13,7 +13,7 @@ keywords = ["digest", "crypto", "hash"] categories = ["cryptography", "no-std"] [dependencies] -crypto-common = "0.2.0-rc.1" +crypto-common = { version = "0.2.0-rc.1", path = "../crypto-common" } # optional dependencies block-buffer = { version = "0.11.0-rc.4", optional = true } diff --git a/signature/Cargo.toml b/signature/Cargo.toml index 82072dc1..7a428af8 100644 --- a/signature/Cargo.toml +++ b/signature/Cargo.toml @@ -19,7 +19,7 @@ digest = { version = "=0.11.0-pre.9", optional = true, default-features = false rand_core = { version = "0.9", optional = true, default-features = false } [dev-dependencies] -hex-literal = "0.4" +hex-literal = "1" sha2 = { version = "=0.11.0-pre.4", default-features = false } [features] diff --git a/universal-hash/Cargo.toml b/universal-hash/Cargo.toml index 496834ae..bf199310 100644 --- a/universal-hash/Cargo.toml +++ b/universal-hash/Cargo.toml @@ -13,7 +13,7 @@ keywords = ["crypto", "mac"] categories = ["cryptography", "no-std"] [dependencies] -crypto-common = "0.2.0-rc.1" +crypto-common = { version = "0.2.0-rc.1", path = "../crypto-common" } subtle = { version = "2.4", default-features = false } [package.metadata.docs.rs]