tricot/Cargo.toml

49 lines
1.4 KiB
TOML
Raw Normal View History

[package]
name = "tricot"
version = "0.1.0"
edition = "2018"
authors = ["Alex Auvolat <alex@adnab.me>"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2022-12-05 16:45:21 +00:00
anyhow = "1.0.66"
envy = "0.4"
2021-12-06 22:40:41 +00:00
futures = "0.3"
log = "0.4"
pretty_env_logger = "0.4"
regex = "1"
2021-12-30 19:08:10 +00:00
reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls-manual-roots" ] }
2022-12-05 16:45:21 +00:00
serde = { version = "1.0.149", features = ["derive"] }
serde_json = "1.0.89"
tokio = { version = "1.22", default-features = false, features = ["rt", "rt-multi-thread", "io-util", "net", "time", "macros", "sync", "signal", "fs"] }
2021-12-06 22:40:41 +00:00
bytes = "1"
acme-micro = "0.12"
rustls = { version = "0.20", features = [ "dangerous_configuration" ] }
2022-12-05 16:45:21 +00:00
rustls-pemfile = "1.0"
2021-12-07 12:50:44 +00:00
chrono = { version = "0.4", features = [ "serde" ] }
2021-12-07 14:20:45 +00:00
hyper = { version = "0.14", features = [ "full" ] }
futures-util = "0.3"
tokio-rustls = "0.23"
2021-12-08 21:58:19 +00:00
hyper-rustls = "0.23"
2021-12-07 12:50:44 +00:00
http = "0.2"
2021-12-07 16:56:15 +00:00
structopt = "0.3"
glob = "0.3"
2022-12-05 16:45:21 +00:00
rcgen = "0.10"
2021-12-09 14:43:19 +00:00
accept-encoding-fork = "0.2.0-alpha.3"
async-compression = { version = "0.3", features = ["tokio", "gzip", "zstd", "deflate", "brotli"] }
2022-12-05 16:45:21 +00:00
tokio-util = { version = "0.7", features = ["io"] }
uuid = { version = "1.2", features = ["v4"] }
2022-12-05 17:43:48 +00:00
opentelemetry = "0.17"
opentelemetry-prometheus = "0.10"
prometheus = "0.13"
df-consul = "0.1.0"
2022-12-05 16:45:21 +00:00
dhat = { version = "0.3", optional = true }
[profile.release]
debug = 1
[features]
dhat-heap = [ "dhat" ]