-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
95 lines (81 loc) · 2.38 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
90
91
92
93
94
95
[package]
name = "yacme"
version = "5.0.0-rc.2"
edition = "2021"
authors = ["Alex Rudy <[email protected]>"]
license = "MIT"
repository = "https://github.com/alexrudy/yacme"
description = "Yet another ACME client."
keywords = ["async", "acme", "https", "networking", "tls"]
categories = [
"api-bindings",
"cryptography",
"network-programming",
"web-programming::http-server",
]
[dependencies]
base64ct = { version = "1", features = ["alloc"] }
chrono = { version = "0.4", features = ["serde"] }
const-oid = { version = "0.9", features = ["db"] }
der = { version = "0.7", features = ["std", "pem", "oid"] }
fd-lock = { version = "4", optional = true }
http = { version = "1.1", optional = true }
lazy_static = { version = "1", optional = true }
mime = "0.3"
pem-rfc7468 = { version = "0.7", features = ["std"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha2 = "0.10"
signature = "2"
thiserror = "1"
tokio = { version = "1" }
tracing = { version = "0.1" }
x509-cert = { version = "0.2", features = ["pem", "std"] }
[dependencies.jaws]
version = "1"
features = ["ecdsa", "p256", "rsa", "hmac"]
[dependencies.reqwest]
version = "0.12"
features = ["rustls-tls", "json"]
default-features = false
[dev-dependencies]
static_assertions = "1"
tokio = { version = "1", features = ["full"] }
tracing-subscriber.version = "0.3"
pkcs8 = { version = "0.10", features = ["alloc", "pem"] }
http = { version = "1.1" }
p256 = { version = "0.13", features = ["pkcs8", "arithmetic", "jwk"] }
ecdsa = { version = "0.16", features = ["pem"] }
rsa = { version = "0.9", features = ["sha2"] }
[features]
pebble = ["lazy_static", "http", "fd-lock"]
trace-requests = []
[[example]]
name = "pebble"
path = "examples/letsencrypt-pebble.rs"
required-features = ["pebble"]
[[example]]
name = "pebble-schema"
path = "examples/low-level/pebble-schema.rs"
required-features = ["pebble"]
[[example]]
name = "show-request"
path = "examples/low-level/show-request.rs"
required-features = ["pebble"]
[[example]]
name = "generate-csr"
path = "examples/low-level/generate-csr.rs"
[[test]]
name = "pebble-integration"
path = "tests/pebble.rs"
required-features = ["pebble"]
[[test]]
name = "examples"
path = "tests/examples.rs"
required-features = ["pebble"]
[package.metadata.release]
allow-branch = ["main"]
publish = false
pre-release-hook = ["git", "switch", "-c", "release-{{version}}"]
push = true
tag = false