Removed unused crate imports.

This commit is contained in:
Filipe Rodrigues 2025-10-12 15:28:38 +01:00
parent 4b4050d5cb
commit b6d08bea5c
Signed by: zenithsiz
SSH Key Fingerprint: SHA256:Mb5ppb3Sh7IarBO/sBTXLHbYEOz37hJAlslLQPPAPaU
4 changed files with 12 additions and 40 deletions

16
Cargo.lock generated
View File

@ -2011,10 +2011,8 @@ dependencies = [
"app-error",
"async-broadcast",
"clap",
"console-subscriber",
"dashmap",
"futures",
"indexmap 2.11.1",
"indicatif",
"itertools",
"notify",
@ -2025,8 +2023,6 @@ dependencies = [
"tokio",
"tokio-stream",
"tracing",
"tracing-log",
"tracing-subscriber",
"tracing-test",
"unicode-ident",
"yoke",
@ -2038,25 +2034,13 @@ name = "zbuild-bin"
version = "0.1.10"
dependencies = [
"app-error",
"async-broadcast",
"clap",
"console-subscriber",
"dashmap",
"futures",
"indexmap 2.11.1",
"indicatif",
"itertools",
"notify",
"notify-debouncer-full",
"pin-project",
"smallvec",
"tokio",
"tokio-stream",
"tracing",
"tracing-log",
"tracing-subscriber",
"unicode-ident",
"yoke",
"zbuild",
]

View File

@ -104,3 +104,7 @@ clippy.future_not_send = "allow"
# We want to format paths with quotes
clippy.unnecessary_debug_formatting = "allow"
# TODO: Warn on this always once we resolve the issues of it triggering
# on integration tests
# rust.unused_crate_dependencies = "warn"

View File

@ -20,26 +20,14 @@ tokio-console = ["dep:console-subscriber"]
# Workspace
zbuild = { workspace = true }
app-error = { workspace = true }
async-broadcast = { workspace = true }
clap = { features = ["derive"], workspace = true }
console-subscriber = { optional = true, workspace = true }
dashmap = { workspace = true }
futures = { workspace = true }
indexmap = { workspace = true }
indicatif = { workspace = true }
itertools = { workspace = true }
notify = { workspace = true }
notify-debouncer-full = { workspace = true }
pin-project = { workspace = true }
smallvec = { features = ["may_dangle"], workspace = true }
tokio = { features = ["full"], workspace = true }
tokio-stream = { workspace = true }
tracing = { workspace = true }
tracing-log = { workspace = true }
tracing-subscriber = { features = ["env-filter"], workspace = true }
unicode-ident = { workspace = true }
yoke = { workspace = true }
app-error = { workspace = true }
clap = { features = ["derive"], workspace = true }
console-subscriber = { optional = true, workspace = true }
itertools = { workspace = true }
tokio = { features = ["full"], workspace = true }
tracing = { workspace = true }
tracing-log = { workspace = true }
tracing-subscriber = { features = ["env-filter"], workspace = true }
[lints]
workspace = true

View File

@ -12,10 +12,8 @@ publish = { workspace = true }
app-error = { workspace = true }
async-broadcast = { workspace = true }
clap = { features = ["derive"], workspace = true }
console-subscriber = { optional = true, workspace = true }
dashmap = { workspace = true }
futures = { workspace = true }
indexmap = { workspace = true }
indicatif = { workspace = true }
itertools = { workspace = true }
notify = { workspace = true }
@ -25,8 +23,6 @@ smallvec = { features = ["may_dangle"], workspace = true }
tokio = { features = ["full"], workspace = true }
tokio-stream = { workspace = true }
tracing = { workspace = true }
tracing-log = { workspace = true }
tracing-subscriber = { features = ["env-filter"], workspace = true }
unicode-ident = { workspace = true }
yoke = { workspace = true }