From 06567d957ca30f4196b156046864201ca08c4d40 Mon Sep 17 00:00:00 2001 From: soruh Date: Tue, 28 Mar 2023 15:02:24 +0200 Subject: [PATCH] disable tokio-console by default --- .cargo/config.toml | 3 +-- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.cargo/config.toml b/.cargo/config.toml index d098a21..ba238c5 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,3 +1,2 @@ [build] -rustflags = [ "--cfg", "tokio_unstable" ] - +# rustflags = [ "--cfg", "tokio_unstable" ] diff --git a/Cargo.toml b/Cargo.toml index 52d71e7..b94661d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,6 +30,6 @@ tracing-error = "0.2.0" zerocopy = "0.6.1" [features] -default = ["debug_server", "tokio_console"] +default = ["debug_server"] debug_server = ["dep:hyper"] tokio_console = ["dep:console-subscriber"]