-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
34 lines (30 loc) · 920 Bytes
/
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
[package]
name = "ctclient"
description = "Certificate Transparency Log client suitable for monitoring, quick SCT validation, gossiping, etc."
license = "MIT"
repository = "https://github.com/micromaomao/ctclient"
version = "0.4.5"
authors = ["Mao Wtm <m@maowtm.org>"]
edition = "2018"
documentation = "https://docs.rs/ctclient"
readme = "README.md"
[[example]]
name = "simple_client"
path = "examples/simple_client/simple_client.rs"
[dependencies]
reqwest = { version = "0.10.4", default-features = false, features = ["blocking", "native-tls", "gzip", "json"] }
serde = { version = "1.0.97", features = ["derive"] }
serde_json = "1.0.40"
serde_urlencoded = "0.6.1"
base64 = "0.12.1"
openssl = "0.10.24"
foreign-types = "0.3.2"
openssl-sys = "0.9.56"
log = "0.4.7"
lazy_static = "1.4.0"
[dev-dependencies]
# for the example binary
env_logger = "0.7.1"
rusqlite = "0.23.1"
[build-dependencies]
openssl-sys = "0.9.56"