diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 3d9b6bc3fc..43a644712b 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -12,7 +12,7 @@ env_logger = "0.9" futures = "0.3" jsonrpsee = { path = "../jsonrpsee", features = ["full"] } tracing = "0.1" -tracing-subscriber = "0.2" +tracing-subscriber = { version = "0.3.3", features = ["env-filter"] } tokio = { version = "1.8", features = ["full"] } [[example]] diff --git a/ws-server/Cargo.toml b/ws-server/Cargo.toml index d288602652..1b01c2f8f0 100644 --- a/ws-server/Cargo.toml +++ b/ws-server/Cargo.toml @@ -24,4 +24,4 @@ tokio-util = { version = "0.6", features = ["compat"] } anyhow = "1" jsonrpsee-test-utils = { path = "../test-utils" } jsonrpsee = { path = "../jsonrpsee", features = ["full"] } -tracing-subscriber = "0.2.25" +tracing-subscriber = { version = "0.3.3", features = ["env-filter"] }