summaryrefslogtreecommitdiff
path: root/rust/Cargo.toml
diff options
context:
space:
mode:
authorMason Reed <mason@vector35.com>2025-12-18 17:14:06 -0500
committerMason Reed <35282038+emesare@users.noreply.github.com>2026-01-11 10:36:01 -0800
commit6f75ca031aa7e8f7e1c706d1880b202137b1996f (patch)
tree1fe8e778f98e4390a1075fc402047e23f2128934 /rust/Cargo.toml
parent168a3fd34824adc9c6a606cd144219701f15cccf (diff)
[Rust] Enter more session scoped tracing spans for debug info and binary view callbacks
Diffstat (limited to 'rust/Cargo.toml')
-rw-r--r--rust/Cargo.toml6
1 files changed, 5 insertions, 1 deletions
diff --git a/rust/Cargo.toml b/rust/Cargo.toml
index 2d7aa6a5..17cb2f0d 100644
--- a/rust/Cargo.toml
+++ b/rust/Cargo.toml
@@ -27,13 +27,17 @@ serde_derive = "1.0"
serde_json = "1.0"
# Used for tracing compatible logs
tracing = { version = "0.1", default-features = false, features = ["std"] }
-tracing-subscriber = { version = "0.3", default-features = false, features = ["std", "registry", "smallvec", "parking_lot"] }
+tracing-subscriber = { version = "0.3", default-features = false, features = ["std", "registry", "parking_lot"] }
[dev-dependencies]
rstest = "0.24"
tempfile = "3.15"
serial_test = "3.2"
insta = { version = "1.42", features = ["yaml"] }
+# Use default features so that examples can register the fmt subscriber.
+tracing-subscriber = { version = "0.3", default-features = true }
+# Used for progress bar in examples
+tracing-indicatif = "0.3"
[package.metadata.typos]
default.extend-ignore-re = ["Collapsable"]