forked from briansmith/webpki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
89 lines (76 loc) · 2.19 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# Copyright 2015 Brian Smith.
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHORS DISCLAIM ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
[package]
authors = ["Brian Smith <[email protected]>"]
categories = ["cryptography", "no-std"]
description = "Web PKI X.509 Certificate Verification."
documentation = "https://briansmith.org/rustdoc/webpki/"
edition = "2018"
license-file = "LICENSE"
name = "webpki"
readme = "README.md"
repository = "https://github.com/briansmith/webpki"
version = "0.21.3"
include = [
"Cargo.toml",
"LICENSE",
"README.md",
"src/calendar.rs",
"src/cert.rs",
"src/der.rs",
"src/name.rs",
"src/error.rs",
"src/signed_data.rs",
"src/time.rs",
"src/trust_anchor_util.rs",
"src/verify_cert.rs",
"src/webpki.rs",
"src/data/**/*",
"tests/dns_name_tests.rs",
"tests/integration.rs",
"tests/misc/serial_neg.der",
"tests/misc/serial_zero.der",
"tests/netflix/ca.der",
"tests/netflix/ee.der",
"tests/netflix/inter.der",
"tests/ed25519/ca.der",
"tests/ed25519/ee.der",
"third-party/chromium/**/*",
]
[lib]
name = "webpki"
path = "src/webpki.rs"
[features]
default = ["std", "trust_anchor_util"]
trust_anchor_util = ["std"]
std = []
[dependencies]
ring = { version = "0.16.14", default-features = false, features = ["alloc"] }
untrusted = "0.7.1"
[dev-dependencies]
base64 = "0.9.1"
[profile.bench]
opt-level = 3
debug = false
rpath = false
lto = true
debug-assertions = false
codegen-units = 1
[profile.release]
opt-level = 3
debug = false
rpath = false
lto = true
debug-assertions = false
codegen-units = 1