1[package]
2name = "crypto-common"
3description = "Common cryptographic traits"
4version = "0.1.6"
5authors = ["RustCrypto Developers"]
6license = "MIT OR Apache-2.0"
7readme = "README.md"
8edition = "2018"
9documentation = "https://docs.rs/crypto-common"
10repository = "https://github.com/RustCrypto/traits"
11keywords = ["crypto", "traits"]
12categories = ["cryptography", "no-std"]
13
14[dependencies]
15generic-array = { version = "0.14.4", features = ["more_lengths"] }
16typenum = "1.14" # earlier versions of typenum don't satisfy the 'static bound on U* types
17
18# optional dependencies
19rand_core = { version = "0.6", optional = true }
20
21[features]
22std = []
23getrandom = ["rand_core/getrandom"]
24
25[package.metadata.docs.rs]
26all-features = true
27rustdoc-args = ["--cfg", "docsrs"]
28