-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (40 loc) · 1.01 KB
/
Cargo.toml
File metadata and controls
52 lines (40 loc) · 1.01 KB
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
[package]
name = "envoy-acme-xds"
version = "0.2.1"
edition = "2024"
repository = "https://github.com/csssuf/envoy-acme-xds"
license = "Apache-2.0"
description = "Envoy XDS for transparent ACME certificate issuance"
[dependencies]
# Async runtime
tokio = { version = "1", features = ["full", "signal"] }
tokio-stream = { version = "0.1", features = ["net"] }
# gRPC
tonic = "0.12"
prost = "0.13"
prost-types = "0.13"
# xDS API types
xds-api = { version = "0.2", features = ["pbjson"] }
# ACME
instant-acme = "0.7"
# Certificate generation
rcgen = "0.13"
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
# Time handling
chrono = { version = "0.4", features = ["serde"] }
# Error handling
thiserror = "1"
anyhow = "1"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# X.509 parsing (for expiry checking)
x509-parser = "0.16"
# Async utilities
async-stream = "0.3"
futures = "0.3"
# Systemd socket activation
sd-listen-fds = "0.2"