-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (37 loc) · 1.17 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
[package]
name = "ctlog"
version = "0.1.0"
edition = "2021"
authors = [
"duskmoon (Campbell He) <[email protected]>",
"stack-rs",
]
description = "A simple certificate transparency log client API wrapper"
categories = ["web-programming::http-client", "api-bindings"]
keywords = ["certificate", "network", "web", "security", "api"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/stack-rs/ctlog"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
base64 = "0.13.1"
chrono = "0.4.23"
clap = { version = "4.0.29", features = ["derive"] }
deku = "0.15.0"
oid-registry = { version = "0.6.0", features = ["x509"] }
ouroboros = "0.15.5"
reqwest = { version = "0.11", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
thiserror = "1.0.37"
tokio = { version = "1.21", features = ["rt", "net"] }
url = "2.3"
# x509-parser = "0.14.0"
x509-parser = { git = "https://github.com/duskmoon314/x509-parser", branch = "parse_crl" }
[dev-dependencies]
anyhow = "1.0"
serde_json = "1.0.89"
tokio = { version = "1.21.2", features = [
"rt",
"net",
"macros",
"rt-multi-thread",
] }