-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (29 loc) · 1017 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
[package]
name = "speculare-client"
version = "0.1.1"
authors = ["Martichou <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-recursion = "1.1"
chrono = { version = "0.4", features = ["serde"] }
config = "0.14"
clap = { version = "4.2", features = ["derive"] }
clap-verbosity-flag = "2.0"
hyper = { version = "0.14", features = ["client", "http1", "http2"] }
hyper-rustls = { version = "0.24", features = ["rustls-native-certs", "http2"]}
log = "0.4"
once_cell = "1.14"
serde_json = "1.0"
simd-json = "0.14"
serde = { version = "1.0", features = ["derive"] }
sha1_smol = { version = "1.0", features = ["std"] }
sys_metrics = { git = "https://github.com/Martichou/sys_metrics" }
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[features]
default = []
[profile.release]
lto = true
opt-level = 3
codegen-units = 1