diff options
Diffstat (limited to 'tvix/tracing/Cargo.toml')
-rw-r--r-- | tvix/tracing/Cargo.toml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tvix/tracing/Cargo.toml b/tvix/tracing/Cargo.toml index 41654d00c02f..490f086a27f3 100644 --- a/tvix/tracing/Cargo.toml +++ b/tvix/tracing/Cargo.toml @@ -16,6 +16,7 @@ tracing-opentelemetry = { version = "0.23.0", optional = true } opentelemetry = { version = "0.22.0", optional = true } opentelemetry-otlp = { version = "0.15.0", optional = true } opentelemetry_sdk = { version = "0.22.1", features = ["rt-tokio"], optional = true } +tracing-tracy = { version = "0.11.0", features = ["flush-on-exit"], optional = true } [features] default = [] @@ -25,6 +26,9 @@ otlp = [ "dep:opentelemetry-otlp", "dep:opentelemetry_sdk" ] +tracy = [ + "dep:tracing-tracy" +] [lints] workspace = true |