diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-19 09:26:03 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-19 09:26:03 +0000 |
commit | 9918693037dce8aa4bb6f08741b6812923486c18 (patch) | |
tree | 21d2b40bec7e6a7ea664acee056eb3d08e15a1cf /vendor/signature/Cargo.toml | |
parent | Releasing progress-linux version 1.75.0+dfsg1-5~progress7.99u1. (diff) | |
download | rustc-9918693037dce8aa4bb6f08741b6812923486c18.tar.xz rustc-9918693037dce8aa4bb6f08741b6812923486c18.zip |
Merging upstream version 1.76.0+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/signature/Cargo.toml')
-rw-r--r-- | vendor/signature/Cargo.toml | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/vendor/signature/Cargo.toml b/vendor/signature/Cargo.toml index 2d2391580..871099e1c 100644 --- a/vendor/signature/Cargo.toml +++ b/vendor/signature/Cargo.toml @@ -11,9 +11,9 @@ [package] edition = "2021" -rust-version = "1.56" +rust-version = "1.60" name = "signature" -version = "2.1.0" +version = "2.2.0" authors = ["RustCrypto Developers"] description = "Traits for cryptographic signature algorithms (e.g. ECDSA, Ed25519)" documentation = "https://docs.rs/signature" @@ -55,7 +55,7 @@ optional = true default-features = false [dev-dependencies.hex-literal] -version = "0.3" +version = "0.4" [dev-dependencies.sha2] version = "0.10" @@ -63,4 +63,7 @@ default-features = false [features] alloc = [] -std = ["alloc"] +std = [ + "alloc", + "rand_core?/std", +] |