diff --git a/Cargo.lock b/Cargo.lock index 5476f5df..aa7fbe0b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -364,7 +364,8 @@ dependencies = [ [[package]] name = "pkcs1" version = "0.8.0-rc.1" -source = "git+https://github.com/RustCrypto/formats.git#c2bbe3308b2338954581e7125dbefb23d6519474" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "226eb25e2c46c166ce498ac0f606ac623142d640064879ff445938accddff1e2" dependencies = [ "der", "pkcs8", @@ -391,7 +392,8 @@ dependencies = [ [[package]] name = "pkcs8" version = "0.11.0-rc.1" -source = "git+https://github.com/RustCrypto/formats.git#c2bbe3308b2338954581e7125dbefb23d6519474" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eacd2c7141f32aef1cfd1ad0defb5287a3d94592d7ab57c1ae20e3f9f1f0db1f" dependencies = [ "der", "pkcs5", diff --git a/Cargo.toml b/Cargo.toml index d276465a..a725213b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,8 +17,8 @@ rand_core = { version = "0.6.4", default-features = false } const-oid = { version = "0.10.0-rc.3", default-features = false } subtle = { version = "2.6.1", default-features = false } digest = { version = "=0.11.0-pre.9", default-features = false, features = ["alloc", "oid"] } -pkcs1 = { version = "0.8.0-rc.0", default-features = false, features = ["alloc", "pkcs8"] } -pkcs8 = { version = "0.11.0-rc.0", default-features = false, features = ["alloc"] } +pkcs1 = { version = "0.8.0-rc.1", default-features = false, features = ["alloc", "pkcs8"] } +pkcs8 = { version = "0.11.0-rc.1", default-features = false, features = ["alloc"] } signature = { version = "=2.3.0-pre.4", default-features = false, features = ["alloc", "digest", "rand_core"] } spki = { version = "0.8.0-rc.1", default-features = false, features = ["alloc"] } zeroize = { version = "1.5", features = ["alloc"] } @@ -67,7 +67,3 @@ opt-level = 2 [profile.bench] debug = true - -[patch.crates-io] -pkcs1 = { git = "https://github.com/RustCrypto/formats.git" } -pkcs8 = { git = "https://github.com/RustCrypto/formats.git" }