diff --git a/tracing-error/Cargo.toml b/tracing-error/Cargo.toml index 48193be622..90111bb2df 100644 --- a/tracing-error/Cargo.toml +++ b/tracing-error/Cargo.toml @@ -38,9 +38,14 @@ default = ["traced-error"] traced-error = [] [dependencies] -tracing-subscriber = { path = "../tracing-subscriber", version = "0.3", default-features = false, features = ["registry", "fmt"] } tracing = { path = "../tracing", version = "0.2", default-features = false, features = ["std"] } +[dependencies.tracing-subscriber] +path = "../tracing-subscriber" +version = "0.3" +default-features = false +features = ["registry", "fmt", "std"] + [badges] maintenance = { status = "experimental" } diff --git a/tracing-flame/Cargo.toml b/tracing-flame/Cargo.toml index cf2a04609c..c6952d7246 100644 --- a/tracing-flame/Cargo.toml +++ b/tracing-flame/Cargo.toml @@ -25,9 +25,14 @@ default = ["smallvec"] smallvec = ["tracing-subscriber/smallvec"] [dependencies] -tracing-subscriber = { path = "../tracing-subscriber", version = "0.3", default-features = false, features = ["registry", "fmt"] } tracing = { path = "../tracing", version = "0.2", default-features = false, features = ["std"] } lazy_static = "1.3.0" +[dependencies.tracing-subscriber] +path = "../tracing-subscriber" +version = "0.3" +default-features = false +features = ["registry", "fmt", "std"] + [dev-dependencies] tempfile = "3"