mirror of
https://github.com/rustfs/rustfs.git
synced 2026-08-05 21:07:43 +00:00
44 lines
1.8 KiB
TOML
44 lines
1.8 KiB
TOML
[package]
|
|
name = "rustfs-obs"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
version.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[features]
|
|
default = []
|
|
audit-kafka = ["dep:rdkafka", "dep:serde_json"]
|
|
audit-webhook = ["dep:reqwest"]
|
|
|
|
[dependencies]
|
|
opentelemetry = { workspace = true }
|
|
opentelemetry-appender-tracing = { workspace = true, features = ["experimental_use_tracing_span_context", "experimental_metadata_attributes"] }
|
|
opentelemetry_sdk = { workspace = true, features = ["rt-tokio"] }
|
|
opentelemetry-stdout = { workspace = true }
|
|
opentelemetry-otlp = { workspace = true, features = ["grpc-tonic", "metrics"] }
|
|
opentelemetry-semantic-conventions = { workspace = true, features = ["semconv_experimental"] }
|
|
serde = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-opentelemetry = { workspace = true }
|
|
tracing-subscriber = { workspace = true, features = ["fmt", "env-filter", "tracing-log", "time", "local-time", "json"] }
|
|
tokio = { workspace = true, features = ["full"] }
|
|
rdkafka = { workspace = true, features = ["tokio"], optional = true }
|
|
reqwest = { workspace = true, features = ["json"], optional = true }
|
|
serde_json = { workspace = true, optional = true }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
chrono = { workspace = true }
|
|
opentelemetry = { workspace = true, features = ["trace", "metrics"] }
|
|
opentelemetry_sdk = { workspace = true, features = ["trace", "rt-tokio"] }
|
|
opentelemetry-stdout = { workspace = true, features = ["trace", "metrics"] }
|
|
opentelemetry-otlp = { workspace = true, features = ["metrics", "grpc-tonic"] }
|
|
opentelemetry-semantic-conventions = { workspace = true, features = ["semconv_experimental"] }
|
|
tokio = { workspace = true, features = ["full"] }
|
|
tracing = { workspace = true, features = ["std", "attributes"] }
|
|
tracing-subscriber = { workspace = true, features = ["registry", "std", "fmt"] } |