diff --git a/tokio-xmpp/Cargo.toml b/tokio-xmpp/Cargo.toml index bb6c8ce8b97b048f9a2ebf5725dc29cfe76dda4b..c27381496b3c3a404266df2d63c2623e9ea099ac 100644 --- a/tokio-xmpp/Cargo.toml +++ b/tokio-xmpp/Cargo.toml @@ -32,7 +32,7 @@ rand = "^0.8" syntect = { version = "5", optional = true } [dev-dependencies] -env_logger = "0.10" +env_logger = { version = "0.10", default-features = false, features = ["auto-color", "humantime"] } [build-dependencies] rustc_version = "0.4" diff --git a/xmpp/Cargo.toml b/xmpp/Cargo.toml index 2ba56083396a4c0e84a7de20e77631c76b573d1c..a8d255e9d45be7ab1d239a8175223b0d4b5d9ff5 100644 --- a/xmpp/Cargo.toml +++ b/xmpp/Cargo.toml @@ -22,7 +22,7 @@ reqwest = { version = "0.11.8", features = ["stream"] } tokio-util = { version = "0.7", features = ["codec"] } [dev-dependencies] -env_logger = "0.10" +env_logger = { version = "0.10", default-features = false, features = ["auto-color", "humantime"] } [[example]] name = "hello_bot"