-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (35 loc) · 1.12 KB
/
Cargo.toml
File metadata and controls
36 lines (35 loc) · 1.12 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
[package]
name = "mustermann"
description = "Mustermann is test data for your OpenTelemetry pipeline"
license = "MIT"
authors = ["Jan Schulte <janschulte@fastmail.com>"]
version = "12.0.0"
edition = "2021"
[dependencies]
tracing = { version = "0.1", features = ["log", "log-always"] }
tracing-subscriber = { version = "0.3.19", features = ["env-filter", "json"] }
clap = { version = "4.4", features = ["derive"] }
fake = { version = "4", features = ["derive"] }
tracing-opentelemetry = "0.29.0"
opentelemetry = { version = "0.29.0", features = ["metrics"] }
opentelemetry-otlp = { version = "0.29.0", features = ["tonic", "grpc-tonic"] }
opentelemetry_sdk = { version = "0.29.0", features = [
"rt-tokio",
"tokio",
"opentelemetry-http",
"metrics",
] }
tonic = "0.12.3"
opentelemetry-appender-tracing = "0.29.0"
opentelemetry-stdout = "0.29.0"
tokio = { version = "1.43.0", features = ["full"] }
futures = "0.3"
rand = "0.9.0"
ctrlc = "3.4"
serde = { version = "1.0.219", features = ["derive"] }
serde_yaml = "0.9.34"
opentelemetry-semantic-conventions = "0.29.0"
pest = "2.8.0"
pest_derive = "2.8.0"
tabled = "0.18.0"
anyhow = "1.0.97"