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