mirror of
https://github.com/kjuulh/dagger-rs.git
synced 2025-08-19 13:23:27 +02:00
chore: add opentelemtry dependencies
🚀 chore(Cargo.toml): update dependencies and add optional tracing-opentelemetry feature ✨ feat(Cargo.toml): add opentelemetry and opentelemetry-jaeger dependencies as optional features 🚀 chore(Cargo.toml): update tracing and tracing-subscriber dependencies The dependencies in the Cargo.toml file have been updated to their latest versions. The tracing-opentelemetry feature has been added as an optional feature to the dagger-core and dagger-sdk crates. The opentelemetry and opentelemetry-jaeger dependencies have been added as optional features to the dagger-sdk crate. This allows for the use of OpenTelemetry tracing in the application.
This commit is contained in:
11
Cargo.toml
11
Cargo.toml
@@ -18,9 +18,16 @@ color-eyre = "0.6.2"
|
||||
serde = { version = "1.0.152", features = ["derive"] }
|
||||
serde_json = "1.0.93"
|
||||
tokio = { version = "1.25.0", features = ["full"] }
|
||||
tracing = { version = "0.1.37", features = ["log"] }
|
||||
tracing-subscriber = { version = "0.3.16", features = [
|
||||
tracing = { version = "0.1.37", features = ["log", "std"] }
|
||||
tracing-subscriber = { version = "0.3.17", features = [
|
||||
"tracing-log",
|
||||
"tracing",
|
||||
"registry",
|
||||
"std",
|
||||
] }
|
||||
tracing-opentelemetry = { version = "0.18.0" }
|
||||
opentelemetry = { version = "0.18.0", default-features = false, features = [
|
||||
"trace",
|
||||
] }
|
||||
thiserror = "1.0.40"
|
||||
opentelemetry-jaeger = "0.17.0"
|
||||
|
Reference in New Issue
Block a user