mirror of
https://github.com/servo/servo
synced 2026-04-25 17:15:48 +02:00
everywhere: Remove unused deps (#43344)
RustRover flags unused dependencies gray in Cargo.toml, which works well except for macro / derive related crates (false-positives). Based on that I removed the flagged crates (after double checking with grep based search). There is one weird case in `storage`, where `tokio` was added as a dependency with multiple feature flags enabled, without tokio actually being used. Since the same feature combination is present in `net`, probably this is a remnant of migrating storage from net. Testing: If CI passes, this is fine. I additionally also searched for references of the packages I removed in the respective crate (I hope I didn't forget any, but should be 90% good). Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
This commit is contained in:
committed by
GitHub
parent
026d679783
commit
f5d4847e85
@@ -26,15 +26,10 @@ rustc-hash = { workspace = true }
|
||||
sea-query = { workspace = true }
|
||||
sea-query-rusqlite = { workspace = true }
|
||||
serde = { workspace = true }
|
||||
serde_json = { workspace = true }
|
||||
servo_config = { workspace = true }
|
||||
servo-url = { workspace = true }
|
||||
storage_traits = { workspace = true }
|
||||
tempfile = "3"
|
||||
tokio = { workspace = true, features = ["macros", "rt-multi-thread", "sync"] }
|
||||
tokio-rustls = { workspace = true }
|
||||
tokio-stream = { workspace = true }
|
||||
tokio-util = { workspace = true, features = ["codec", "io"] }
|
||||
uuid = { workspace = true }
|
||||
|
||||
[dev-dependencies]
|
||||
|
||||
Reference in New Issue
Block a user