Upgrade to signature crate v1.0.0-pre.3

See: https://github.com/RustCrypto/traits/blob/master/signature/CHANGES.md#100-pre3-2020-03-08
This commit is contained in:
Tony Arcieri
2020-03-08 15:08:33 -07:00
parent 419ac17796
commit a4614d5ce3
3 changed files with 8 additions and 7 deletions
+6 -5
View File
@@ -4,13 +4,14 @@
[![Dependency Status][deps-image]][deps-link]
![Rust Version][rustc-image]
Traits which provide generic, object-safe APIs for generating and verifying
[digital signatures][1].
Support for [digital signatures][1], which provide authentication of data using
public-key cryptography.
All algorithms reside in the separate crates and implemented using traits from
the [`signature`](https://docs.rs/signature/) crate. Additionally all crates do
not require the standard library (i.e. `no_std` capable) and can be easily used
for bare-metal or WebAssembly programming.
the [`signature`](https://docs.rs/signature/) crate.
Crates are designed so they do not require the standard library (i.e. `no_std`)
and can be easily used for bare-metal or lightweight WebAssembly programming.
## Crates
+1 -1
View File
@@ -44,7 +44,7 @@ optional = true
default-features = false
[dependencies.signature]
version = "1.0.0-pre.1"
version = "= 1.0.0-pre.3"
default-features = false
[features]
+1 -1
View File
@@ -12,7 +12,7 @@ categories = ["cryptography", "no-std"]
keywords = ["crypto", "curve25519", "ecc", "signature", "signing"]
[dependencies.signature]
version = "1.0.0-pre.1"
version = "= 1.0.0-pre.3"
default-features = false
[dependencies.serde]