mirror of
https://github.com/kjuulh/dagger-rs.git
synced 2024-11-22 23:32:12 +01:00
kjuulh
bb74617d3f
🚀 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.
46 lines
1.1 KiB
TOML
46 lines
1.1 KiB
TOML
[package]
|
|
name = "dagger-core"
|
|
version = "0.2.11"
|
|
edition = "2021"
|
|
readme = "README.md"
|
|
license-file = "LICENSE.MIT"
|
|
description = "dagger sdk core library"
|
|
repository = "https://github.com/kjuulh/dagger-sdk"
|
|
publish = true
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
eyre = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
thiserror.workspace = true
|
|
tracing-opentelemetry = { workspace = true, optional = true }
|
|
|
|
base64 = "0.21.0"
|
|
dirs = "4.0.0"
|
|
flate2 = { version = "1.0.25", features = ["rust_backend"] }
|
|
graphql_client = { version = "0.12.0", features = [
|
|
"reqwest-rustls",
|
|
"graphql_query_derive",
|
|
], default-features = false }
|
|
hex = "0.4.3"
|
|
hex-literal = "0.3.4"
|
|
platform-info = "1.0.2"
|
|
reqwest = { version = "0.11.14", features = [
|
|
"stream",
|
|
"rustls-tls",
|
|
], default-features = false }
|
|
|
|
sha2 = "0.10.6"
|
|
tar = "0.4.38"
|
|
tempfile = "3.3.0"
|
|
async-trait = "0.1.67"
|
|
|
|
|
|
[features]
|
|
default = []
|
|
otel = ["dep:tracing-opentelemetry"]
|