-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
31 lines (29 loc) · 1.29 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
[package]
name = "showcase-dl"
version = "0.13.0"
edition = "2021"
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.5.4", features = ["derive", "wrap_help"] }
clap-verbosity-flag = { version = "3.0.0", default-features = false, features = ["tracing"] }
color-eyre = "0.6.3"
crossterm = { version = "0.28.0", features = ["event-stream"] }
futures = "0.3.30"
htmlize = { version = "1.0.5", features = ["unescape"] }
json_dotpath = "1.1.0"
nix = { version = "0.29.0", features = ["process", "signal"] }
once_cell = "1.19.0"
opentelemetry = "0.23"
opentelemetry-otlp = { version = "0.16.0", default-features = false, features = ["http-proto", "reqwest-client"] }
opentelemetry_sdk = { version = "0.23.0", features = ["rt-tokio", "trace"] }
ratatui = "0.29.0"
regex = "1.10.4"
reqwest = { version = "0.12.4", default-features = false, features = ["rustls-tls", "charset", "http2", "macos-system-configuration", "gzip", "brotli", "cookies"] }
serde_json = "1.0.116"
tokio = { version = "1.37.0", features = ["macros", "rt", "rt-multi-thread", "process"] }
tracing = "0.1.40"
tracing-appender = "0.2.3"
tracing-error = "0.2.0"
tracing-opentelemetry = "0.24"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }