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