-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
24 lines (22 loc) · 928 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
[package]
name = "nomad-otel-metrics-scraper"
version = "0.1.4"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.79"
clap = { version = "4.4.18", features = ["derive"] }
env_logger = "0.11.0"
futures = "0.3.30"
humantime = "2.1.0"
log = "0.4.20"
opentelemetry = { version = "0.21.0", features = ["metrics"] }
opentelemetry-otlp = { version = "0.14.0", features = ["metrics", "tokio", "http", "http-proto", "reqwest-client"], default-features = false}
opentelemetry-stdout = { version = "0.2.0", features = ["metrics"]}
opentelemetry_sdk = { version = "0.21.2", features = ["metrics", "rt-tokio"] }
reqwest = { version = "0.11.23", features = ["json", "rustls-tls", "stream"], default-features = false }
serde = "1.0.195"
serde_json = "1.0.111"
tokio = { version = "1.35.1", features = ["full"] }
tokio-util = "0.7.10"
url = "2.5.0"