From 1bd1908291655ff5f8c241ee10750cfede379ad3 Mon Sep 17 00:00:00 2001 From: lemonsh Date: Sat, 29 Apr 2023 22:16:42 +0200 Subject: [PATCH] make tracing not optional anymore --- connectbox/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/connectbox/Cargo.toml b/connectbox/Cargo.toml index 616ec82..9ebced1 100644 --- a/connectbox/Cargo.toml +++ b/connectbox/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" edition = "2021" [dependencies] -tracing = { version = "0.1", optional = true } +tracing = "0.1" thiserror = "1.0" reqwest = { version = "0.11", default-features = false, features = ["cookies"] } quick-xml = { version = "0.28", features = ["serialize"] } @@ -14,4 +14,4 @@ url = "2.3" [dev-dependencies] color-eyre = "0.6" tokio = { version = "1.0", default-features = false, features = ["macros"] } -tracing-subscriber = "0.3" +tracing-subscriber = "0.3" \ No newline at end of file