Skip to content

Commit 796894f

Browse files
authored
signature v2.0.0-pre.0 (#1145)
1 parent f791730 commit 796894f

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crypto/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ cipher = { version = "0.4", optional = true }
2323
digest = { version = "0.10", optional = true, features = ["mac"] }
2424
elliptic-curve = { version = "0.12", optional = true, path = "../elliptic-curve" }
2525
password-hash = { version = "0.4", optional = true, path = "../password-hash" }
26-
signature = { version = "=2.0.0-pre", optional = true, default-features = false, path = "../signature" }
26+
signature = { version = "=2.0.0-pre.0", optional = true, default-features = false, path = "../signature" }
2727
universal-hash = { version = "0.5", optional = true, path = "../universal-hash" }
2828

2929
[features]

signature/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "signature"
33
description = "Traits for cryptographic signature algorithms (e.g. ECDSA, Ed25519)"
4-
version = "2.0.0-pre"
4+
version = "2.0.0-pre.0"
55
authors = ["RustCrypto Developers"]
66
license = "Apache-2.0 OR MIT"
77
documentation = "https://docs.rs/signature"
@@ -15,7 +15,7 @@ categories = ["cryptography", "no-std"]
1515
[dependencies]
1616
digest = { version = "0.10.3", optional = true, default-features = false }
1717
rand_core = { version = "0.6", optional = true, default-features = false }
18-
derive = { package = "signature_derive", version = "=1.0.0-pre.7", optional = true, path = "derive" }
18+
derive = { package = "signature_derive", version = "=2.0.0-pre.0", optional = true, path = "derive" }
1919

2020
[dev-dependencies]
2121
hex-literal = "0.3"

signature/async/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "async-signature"
33
description = "Traits for cryptographic signature algorithms (e.g. ECDSA, Ed25519)"
4-
version = "0.2.1"
4+
version = "0.3.0-pre"
55
authors = ["RustCrypto Developers"]
66
license = "Apache-2.0 OR MIT"
77
documentation = "https://docs.rs/async-signature"
@@ -14,7 +14,7 @@ rust-version = "1.56"
1414

1515
[dependencies]
1616
async-trait = "0.1.9"
17-
signature = { version = "=2.0.0-pre", path = ".." }
17+
signature = { version = "=2.0.0-pre.0", path = ".." }
1818

1919
[features]
2020
digest = ["signature/digest-preview"]

signature/derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "signature_derive"
3-
version = "1.0.0-pre.7"
3+
version = "2.0.0-pre.0"
44
authors = ["RustCrypto Developers"]
55
license = "Apache-2.0 OR MIT"
66
description = "Custom derive support for the 'signature' crate"

0 commit comments

Comments
 (0)