Files
honey-biscuit-workshop/workshop-cert/Cargo.toml
T
2025-11-13 23:49:16 +08:00

25 lines
557 B
TOML

[package]
name = "workshop-cert"
version = "0.1.0"
edition = "2024"
[[bin]]
name = "workshop_certgen"
path = "src/main.rs"
[lib]
name = "workshop_cert"
path = "src/lib.rs"
[dependencies]
anyhow = "1.0.100"
chrono = { version = "0.4.42", features = ["serde"] }
clap = { version = "4.5.51", features = ["derive"] }
env_logger = "0.11.8"
log = "0.4.28"
rcgen = { version = "0.14.5", features = ["x509-parser", "pem"] }
serde = { version = "1.0.228", features = ["derive"] }
time = "0.3.44"
tokio = { version = "1.48.0", features = ["full"] }
toml = "0.9.8"