diff --git a/Cargo.lock b/Cargo.lock index 49d97813..a5529d2d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -135,7 +135,7 @@ dependencies = [ [[package]] name = "ecdsa" -version = "0.14.0-pre.0" +version = "0.14.0-pre.1" dependencies = [ "der", "elliptic-curve", @@ -185,13 +185,14 @@ dependencies = [ [[package]] name = "elliptic-curve" -version = "0.12.0-pre.0" -source = "git+https://github.com/RustCrypto/traits#03cbd28d1f6d97fcc35beecdc7af92c307c557cc" +version = "0.12.0-pre.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b8d8eb14e60f3254bd24d2f4b5675b79c1dc79318e37fb8274e607c4d82ebd9" dependencies = [ "base16ct", "crypto-bigint", "der", - "digest", + "digest 0.10.1", "ff", "generic-array", "group", diff --git a/Cargo.toml b/Cargo.toml index 2190f137..e5e84f16 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,6 +5,3 @@ members = [ "ed25519", "rfc6979" ] - -[patch.crates-io] -elliptic-curve = { git = "https://github.com/RustCrypto/traits" } diff --git a/ecdsa/Cargo.toml b/ecdsa/Cargo.toml index 2bdd1afc..4cfbd67b 100644 --- a/ecdsa/Cargo.toml +++ b/ecdsa/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ecdsa" -version = "0.14.0-pre.0" # Also update html_root_url in lib.rs when bumping this +version = "0.14.0-pre.1" # Also update html_root_url in lib.rs when bumping this description = """ Pure Rust implementation of the Elliptic Curve Digital Signature Algorithm (ECDSA) as specified in FIPS 186-4 (Digital Signature Standard) @@ -23,7 +23,7 @@ der = { version = "0.5", optional = true } rfc6979 = { version = "=0.2.0-pre.0", optional = true, path = "../rfc6979" } [dev-dependencies] -elliptic-curve = { version = "0.12.0-pre.0", default-features = false, features = ["dev"] } +elliptic-curve = { version = "0.12.0-pre.1", default-features = false, features = ["dev"] } hex-literal = "0.3" sha2 = { version = "0.10", default-features = false } diff --git a/ecdsa/src/lib.rs b/ecdsa/src/lib.rs index 7a720f72..85a49c42 100644 --- a/ecdsa/src/lib.rs +++ b/ecdsa/src/lib.rs @@ -38,7 +38,7 @@ #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg", html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg", - html_root_url = "https://docs.rs/ecdsa/0.14.0-pre.0" + html_root_url = "https://docs.rs/ecdsa/0.14.0-pre.1" )] #[cfg(feature = "alloc")]