1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
2#
3# When uploading crates to the registry Cargo will automatically
4# "normalize" Cargo.toml files for maximal compatibility
5# with all versions of Cargo and also rewrite `path` dependencies
6# to registry (e.g., crates.io) dependencies.
7#
8# If you are reading this file be aware that the original Cargo.toml
9# will likely look very different (and much more reasonable).
10# See Cargo.toml.orig for the original contents.
11
12[package]
13edition = "2018"
14rust-version = "1.61.0"
15name = "webpki"
16version = "0.22.4"
17authors = ["Brian Smith <[email protected]>"]
18include = [
19    "Cargo.toml",
20    "LICENSE",
21    "README.md",
22    "src/**/*.rs",
23    "src/data/**/*",
24    "tests/dns_name_tests.rs",
25    "tests/integration.rs",
26    "tests/misc/serial_neg.der",
27    "tests/misc/serial_zero.der",
28    "tests/netflix/ca.der",
29    "tests/netflix/ee.der",
30    "tests/netflix/inter.der",
31    "tests/ed25519/ca.der",
32    "tests/ed25519/ee.der",
33    "third-party/chromium/**/*",
34]
35description = "Web PKI X.509 Certificate Verification."
36readme = "README.md"
37categories = [
38    "cryptography",
39    "no-std",
40]
41license-file = "LICENSE"
42repository = "https://github.com/briansmith/webpki"
43
44[package.metadata.docs.rs]
45all-features = true
46
47[profile.bench]
48opt-level = 3
49lto = true
50codegen-units = 1
51debug = 0
52debug-assertions = false
53rpath = false
54
55[profile.release]
56opt-level = 3
57lto = true
58codegen-units = 1
59debug = 0
60debug-assertions = false
61rpath = false
62
63[lib]
64name = "webpki"
65
66[dependencies.ring]
67version = "0.17.2"
68default-features = false
69
70[dependencies.untrusted]
71version = "0.9"
72
73[dev-dependencies.base64]
74version = "0.9.1"
75
76[dev-dependencies.serde]
77version = "1.0"
78features = ["derive"]
79
80[dev-dependencies.serde_json]
81version = "1.0"
82
83[features]
84alloc = ["ring/alloc"]
85std = ["alloc"]
86