-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
23 lines (20 loc) · 891 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
[package]
name = "otel-tests"
version = "0.1.0"
edition = "2021"
description = "Internal #[otel_test] macro to export test spans over OTLP when the `otlp` feature is enabled"
[dependencies]
futures = "0.3"
opentelemetry = { version = "0.18.0", features = ["rt-tokio"], optional = true }
opentelemetry-otlp = { version = "0.11.0", features = ["grpc-sys", "trace"], optional = true }
otel-tests-macro = { path = "otel-tests-macro" }
serde = { version = "1", features = ["derive"] }
tokio = { version = "1", features = ["macros"] }
toml = { version = "0.5.9", default-features = false }
tracing = "0.1"
tracing-opentelemetry = "0.18.0"
tracing-subscriber = { version = "0.3", default-features = false, features = ["fmt", "ansi", "env-filter", "local-time", "tracing-log", "json"] }
[features]
otlp = ["dep:opentelemetry", "dep:opentelemetry-otlp"]
[workspace]
members = ["otel-tests-macro"]