diff --git a/rust/Cargo.lock b/rust/Cargo.lock index df022de..1030511 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -452,6 +452,7 @@ dependencies = [ "tokio", "tracing", "tracing-error", + "tracing-spanned", "tracing-subscriber", ] @@ -664,6 +665,15 @@ dependencies = [ "tracing-core", ] +[[package]] +name = "tracing-spanned" +version = "0.1.0" +source = "git+https://github.com/pulsuite/tracing-spanned?branch=main#38c3eb0a61f6bce19fcb0d0e30fd9570ab5271f8" +dependencies = [ + "tracing", + "tracing-error", +] + [[package]] name = "tracing-subscriber" version = "0.3.18" diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 4584607..0f7cdaf 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -8,6 +8,7 @@ crate-type = ["cdylib"] [dependencies] color-spantrace = "0.2.1" +tracing-spanned = { git = "https://github.com/pulsuite/tracing-spanned", branch = "main" } godot = { git = "https://github.com/godot-rust/gdext", branch = "master" } serde = { version = "1.0.204", features = ["derive"] } serde_yaml = "0.9.34"