X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=vendor%2Fcrypto-common%2FCargo.toml;h=cfac76fa9700dc5dcc92fc202f54fb4cd651d8d1;hb=487cf647e7ddc12d47e262b697079f87c1f08019;hp=acbb813293ae36ad4dc97d79d6c84fe7b4cec981;hpb=2b03887add1ca379893ea11d649eab442706f514;p=rustc.git diff --git a/vendor/crypto-common/Cargo.toml b/vendor/crypto-common/Cargo.toml index acbb813293..cfac76fa97 100644 --- a/vendor/crypto-common/Cargo.toml +++ b/vendor/crypto-common/Cargo.toml @@ -12,18 +12,29 @@ [package] edition = "2018" name = "crypto-common" -version = "0.1.3" +version = "0.1.6" authors = ["RustCrypto Developers"] description = "Common cryptographic traits" documentation = "https://docs.rs/crypto-common" readme = "README.md" -keywords = ["crypto", "traits"] -categories = ["cryptography", "no-std"] +keywords = [ + "crypto", + "traits", +] +categories = [ + "cryptography", + "no-std", +] license = "MIT OR Apache-2.0" repository = "https://github.com/RustCrypto/traits" + [package.metadata.docs.rs] all-features = true -rustdoc-args = ["--cfg", "docsrs"] +rustdoc-args = [ + "--cfg", + "docsrs", +] + [dependencies.generic-array] version = "0.14.4" features = ["more_lengths"] @@ -36,4 +47,5 @@ optional = true version = "1.14" [features] +getrandom = ["rand_core/getrandom"] std = []