-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
63 lines (59 loc) · 1.37 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
[package]
name = "recert"
version = "0.1.0"
edition = "2021"
[dependencies]
serde_json = { version = "1.0.93", features = ["preserve_order"] }
serde_yaml = "0.9.22"
glob = "0.3.1"
base64 = "0.21.0"
pem = "3.0.2"
x509-certificate = "0.21.0"
lazy_static = "1.4.0"
rsa = "0.9.0"
pkcs1 = "0.7.5"
bytes = "1.4.0"
etcd-client = { version = "0.12.1" }
tokio = { version = "1.28.2", features = ["full"] }
ring = "0.17.5"
bcder = "0.7.1"
async-trait = "0.1.68"
futures-util = "0.3.28"
rand = "0.8.5"
hmac = "0.12.1"
sha2 = "0.10.6"
serde = { version = "1.0.163", features = ["rc", "derive"] }
clap = { version = "4.4.2", features = ["derive"] }
p256 = "0.13.2"
tempfile = "3.5.0"
regex = "1.8.3"
anyhow = "1.0.71"
lazy-regex = "3.0.2"
thiserror = "1.0.40"
x509-cert = "0.2.3"
der = "0.7.6"
url = "2.4.0"
sha1 = "0.10.5"
fn-error-context = "0.2.1"
strum = "0.25.0"
strum_macros = "0.25.2"
simple_asn1 = "0.6.2"
num-bigint = "0.4.3"
chrono = "0.4.26"
libc = "0.2.147"
clio = { version = "0.3.4", features = ["clap", "clap-parse"] }
data-url = "0.3.0"
prost = "0.12.1"
log = "0.4.20"
itertools = "0.12.1"
serial_test = "3.0.0"
[build-dependencies]
prost-build = "0.12.1"
[features]
generate = []
# See https://github.com/coreos/cargo-vendor-filterer
[package.metadata.vendor-filter]
# NOTE: Change x86_64 to * to include all platforms
platforms = ["x86_64-unknown-linux-gnu"]
tier = "2"
all-features = true