From 856f2a2756c098c2f295fe235646f1f63c09b397 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20Kr=C3=BCger?= Date: Thu, 13 Mar 2025 17:20:05 +0100 Subject: [PATCH] Only depend on `console` feature flag from `gloo` Pretty much what it says in the title. --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 351ea99..6d2b71e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,6 +15,6 @@ categories = ["debugging", "asynchronous", "profiling", "wasm", "web-programming # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -gloo = "0.8" +gloo = { version = "0.8", default-features = false, features = ["console"] } tracing = "0.1" -tracing-subscriber = "0.3" \ No newline at end of file +tracing-subscriber = "0.3"