-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
17 lines (16 loc) · 712 Bytes
/
Cargo.toml
File metadata and controls
17 lines (16 loc) · 712 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[package]
name = "rust-tracing-otlp"
version = "0.1.0"
edition = "2021"
[dependencies]
actix-web = { version="4.11.0" }
actix-service = "2.0.2"
opentelemetry = { version = "=0.30.0", default-features = false, features = ["trace"]}
opentelemetry_sdk = { version = "=0.30.0", features = ["rt-tokio"] }
opentelemetry-otlp = { version = "=0.30.0", features = ["grpc-tonic", "reqwest-client", "reqwest-rustls", "http-proto", "tls", "tls-roots"]}
rand = { version = "0.9", features = ["log"] }
tokio = { version = "1.45", features = ["full"] }
tracing = "0.1"
tracing-actix-web = { version = "0.7.18" }
tracing-opentelemetry = "=0.31.0"
tracing-subscriber = { version = "0.3", features = ["registry", "env-filter"] }