2021-12-06 22:08:22 +00:00
|
|
|
[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"
|
2021-12-06 22:08:22 +00:00
|
|
|
envy = "0.4"
|
2021-12-06 22:40:41 +00:00
|
|
|
futures = "0.3"
|
2023-08-27 14:13:29 +00:00
|
|
|
tracing = { version = "0.1.30" }
|
|
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
2021-12-06 22:08:22 +00:00
|
|
|
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"
|
2023-10-02 10:49:50 +00:00
|
|
|
rustls = { version = "0.21", 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"
|
2023-10-02 10:49:50 +00:00
|
|
|
tokio-rustls = "0.24"
|
|
|
|
hyper-rustls = "0.24"
|
2021-12-07 12:50:44 +00:00
|
|
|
http = "0.2"
|
2021-12-07 16:56:15 +00:00
|
|
|
structopt = "0.3"
|
2021-12-08 10:11:22 +00:00
|
|
|
glob = "0.3"
|
2023-10-02 10:49:50 +00:00
|
|
|
rcgen = "0.11"
|
2021-12-09 14:43:19 +00:00
|
|
|
accept-encoding-fork = "0.2.0-alpha.3"
|
2023-10-02 10:49:50 +00:00
|
|
|
async-compression = { version = "0.4", 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"] }
|
2023-10-02 11:11:42 +00:00
|
|
|
opentelemetry = "0.20"
|
|
|
|
opentelemetry-prometheus = "0.13"
|
2022-12-05 17:43:48 +00:00
|
|
|
prometheus = "0.13"
|
2023-06-13 09:40:13 +00:00
|
|
|
df-consul = "0.3.5"
|
2024-02-17 15:42:39 +00:00
|
|
|
tikv-jemallocator = { version = "0.5", features = ["profiling"] }
|
|
|
|
tikv-jemalloc-ctl = "0.5"
|
|
|
|
common-mem-prof = { git = "https://github.com/GreptimeTeam/greptimedb", rev = "fcff66e03904d80aacb91b8edd4e15240161d264" }
|
2022-01-24 18:28:18 +00:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
debug = 1
|