-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (34 loc) · 1.15 KB
/
Cargo.toml
File metadata and controls
38 lines (34 loc) · 1.15 KB
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
32
33
34
35
36
37
38
[package]
name = "stackable-telemetry"
version = "0.6.0"
authors.workspace = true
license.workspace = true
edition.workspace = true
repository.workspace = true
[features]
clap = ["dep:clap"]
[dependencies]
axum.workspace = true
clap = { workspace = true, optional = true }
futures-util.workspace = true
opentelemetry = { workspace = true, features = ["logs"] }
opentelemetry-appender-tracing.workspace = true
opentelemetry-otlp = { workspace = true, features = ["grpc-tonic", "gzip-tonic", "logs"] }
# opentelemetry-semantic-conventions.workspace = true
opentelemetry_sdk = { workspace = true, features = ["logs", "rt-tokio", "spec_unstable_logs_enabled"] }
pin-project.workspace = true
snafu.workspace = true
strum.workspace = true
tokio.workspace = true
tower.workspace = true
tracing.workspace = true
tracing-appender.workspace = true
tracing-opentelemetry.workspace = true
tracing-subscriber = { workspace = true, features = ["env-filter"] }
[dev-dependencies]
tokio.workspace = true
tracing-opentelemetry.workspace = true
rstest.workspace = true
[package.metadata.cargo-udeps.ignore]
# Required for doc tests in stackable-telemetry
development = ["stackable-webhook"]