From e7300e1a37dfab2f59587fb536d01f7d4088aa11 Mon Sep 17 00:00:00 2001 From: ErrorNoInternet Date: Sat, 15 Mar 2025 17:04:47 -0400 Subject: [PATCH] chore(deps): only use dirs crate in matrix feature --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0da0f06..f948448 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,7 +28,7 @@ bevy_log = "0" clap = { version = "4", features = ["derive", "string"] } console-subscriber = { version = "0", optional = true } ctrlc = { version = "3", features = ["termination"] } -dirs = "6" +dirs = { version = "6", optional = true } futures = "0" futures-locks = "0" http-body-util = "0" @@ -45,7 +45,7 @@ tokio = { version = "1", features = ["macros"] } zip = { version = "2", default-features = false, features = ["flate2"] } [features] -default = ["matrix"] console-subscriber = ["dep:console-subscriber"] +default = ["matrix"] +matrix = ["dep:dirs", "dep:matrix-sdk"] mimalloc = ["dep:mimalloc"] -matrix = ["dep:matrix-sdk"]