forked from RustCrypto/traits
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (27 loc) · 1.09 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "signature"
description = "Traits for cryptographic signature algorithms (e.g. ECDSA, Ed25519)"
version = "2.3.0-pre.3"
authors = ["RustCrypto Developers"]
license = "Apache-2.0 OR MIT"
documentation = "https://docs.rs/signature"
homepage = "https://github.com/RustCrypto/traits/tree/master/signature"
repository = "https://github.com/RustCrypto/traits"
readme = "README.md"
keywords = ["crypto", "ecdsa", "ed25519", "signature", "signing"]
categories = ["cryptography", "no-std"]
edition = "2021"
rust-version = "1.72"
[dependencies]
derive = { package = "signature_derive", version = "2", optional = true, path = "../signature_derive" }
digest = { version = "=0.11.0-pre.8", optional = true, default-features = false }
rand_core = { version = "0.6.4", optional = true, default-features = false }
[dev-dependencies]
hex-literal = "0.4"
sha2 = { version = "=0.11.0-pre.3", default-features = false }
[features]
alloc = []
std = ["alloc", "rand_core?/std"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]