1 | [package] |
2 | name = "rustls-pki-types" |
3 | version = "1.11.0" |
4 | edition = "2021" |
5 | rust-version = "1.60" |
6 | license = "MIT OR Apache-2.0" |
7 | description = "Shared types for the rustls PKI ecosystem" |
8 | documentation = "https://docs.rs/rustls-pki-types" |
9 | homepage = "https://github.com/rustls/pki-types" |
10 | repository = "https://github.com/rustls/pki-types" |
11 | categories = ["network-programming" , "data-structures" , "cryptography" ] |
12 | |
13 | [features] |
14 | default = ["alloc" ] |
15 | alloc = [] |
16 | std = ["alloc" ] |
17 | web = ["web-time" ] |
18 | |
19 | [target.'cfg(all(target_os = "linux", target_arch = "x86_64"))'.dev-dependencies] |
20 | crabgrind = "=0.1.9" # compatible with valgrind package on GHA ubuntu-latest |
21 | |
22 | [target.'cfg(all(target_family = "wasm", target_os = "unknown"))'.dependencies] |
23 | web-time = { version = "1" , optional = true } |
24 | |
25 | [package.metadata.docs.rs] |
26 | all-features = true |
27 | rustdoc-args = ["--cfg" , "docsrs" ] |
28 | |