diff options
Diffstat (limited to 'rust/Cargo.toml')
| -rw-r--r-- | rust/Cargo.toml | 6 |
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"] |
