-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
64 lines (58 loc) · 1.44 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
[package]
name = "ocsp-stapler"
version = "0.4.4"
edition = "2021"
license = "MPL-2.0"
description = "OCSP stapler & client with support for Rustls"
authors = ["Igor Novgorodov <[email protected]>"]
homepage = "https://github.com/blind-oracle/ocsp-stapler"
repository = "https://github.com/blind-oracle/ocsp-stapler"
keywords = ["ocsp", "stapling", "staple", "rustls", "client"]
categories = [
"network-programming",
"cryptography",
"asynchronous",
"web-programming::http-server",
]
readme = "README.md"
[dependencies]
anyhow = "1.0"
arc-swap = "1"
base64 = "0.22"
bytes = "1.5"
chrono = "0.4"
http = "1.1"
itertools = { version = "0.13", optional = true }
prometheus = { version = "0.13", optional = true }
rasn = "0.15"
rasn-ocsp = "0.15"
rasn-pkix = "0.15"
reqwest = { version = "0.12", default_features = false, features = [
"rustls-tls",
"rustls-tls-webpki-roots",
"http2",
"charset",
"macos-system-configuration",
] }
rustls = { version = "0.23", default-features = false, features = [
"std",
"ring",
] }
sha1 = "0.10"
tokio = { version = "1.36", features = ["full"] }
tokio-util = { version = "0.7", features = ["full"] }
tracing = "0.1"
url = "2.5"
x509-parser = "0.16"
[dev-dependencies]
hex-literal = "0.4"
rustls-pemfile = "2"
num-bigint = "0.4"
httptest = "0.16"
[lib]
doctest = false
[features]
default = ["prometheus"]
prometheus = ["itertools", "dep:prometheus"]
[build-dependencies]
readme-rustdocifier = "0.1.0"