ct-rs/Cargo.toml
Tyler Beckman 16e13cf42e
Add extra_data parsing support
Also, revamped the testing to take real live entries from the letsencrypt 2024h2 log
2024-10-26 01:05:01 -06:00

21 lines
540 B
TOML

[package]
name = "ct"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1.0.90"
der-parser = "9.0.0"
nom = "7.1.3"
num-traits = "0.2.19"
reqwest = { version = "0.12.8", features = ["json"] }
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.132"
sha2 = "0.10.8"
x509-parser = "0.16.0"
[dev-dependencies]
base64ct = "1.6.0"
reqwest = { version = "0.12.8", features = ["json"] }
serde = { version = "1.0.210", features = ["derive"] }
tokio = { version = "1.41.0", features = ["rt-multi-thread", "macros"] }