chore(deps): only use dirs crate in matrix feature

This commit is contained in:
Ryan 2025-03-15 17:04:47 -04:00
parent 8150e5c09c
commit e7300e1a37
Signed by: ErrorNoInternet
GPG Key ID: 2486BFB7B1E6A4A3

View File

@ -28,7 +28,7 @@ bevy_log = "0"
clap = { version = "4", features = ["derive", "string"] } clap = { version = "4", features = ["derive", "string"] }
console-subscriber = { version = "0", optional = true } console-subscriber = { version = "0", optional = true }
ctrlc = { version = "3", features = ["termination"] } ctrlc = { version = "3", features = ["termination"] }
dirs = "6" dirs = { version = "6", optional = true }
futures = "0" futures = "0"
futures-locks = "0" futures-locks = "0"
http-body-util = "0" http-body-util = "0"
@ -45,7 +45,7 @@ tokio = { version = "1", features = ["macros"] }
zip = { version = "2", default-features = false, features = ["flate2"] } zip = { version = "2", default-features = false, features = ["flate2"] }
[features] [features]
default = ["matrix"]
console-subscriber = ["dep:console-subscriber"] console-subscriber = ["dep:console-subscriber"]
default = ["matrix"]
matrix = ["dep:dirs", "dep:matrix-sdk"]
mimalloc = ["dep:mimalloc"] mimalloc = ["dep:mimalloc"]
matrix = ["dep:matrix-sdk"]