mirror of
https://github.com/servo/servo
synced 2026-04-26 01:25:32 +02:00
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>
46 lines
1.2 KiB
TOML
46 lines
1.2 KiB
TOML
[package]
|
|
name = "servo-embedder-traits"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[lib]
|
|
name = "embedder_traits"
|
|
path = "lib.rs"
|
|
|
|
[features]
|
|
# bakes default resources into the library.
|
|
# This feature is mainly intended for testing purposes.
|
|
baked-default-resources = []
|
|
gamepad = []
|
|
|
|
[dependencies]
|
|
accesskit = { workspace = true }
|
|
base = { workspace = true }
|
|
bitflags = { workspace = true }
|
|
cookie = { workspace = true }
|
|
crossbeam-channel = { workspace = true }
|
|
euclid = { workspace = true }
|
|
http = { workspace = true }
|
|
hyper_serde = { workspace = true }
|
|
image = { workspace = true }
|
|
keyboard-types = { workspace = true }
|
|
log = { workspace = true }
|
|
malloc_size_of = { workspace = true }
|
|
malloc_size_of_derive = { workspace = true }
|
|
pixels = { workspace = true }
|
|
rustc-hash = { workspace = true }
|
|
serde = { workspace = true }
|
|
servo_geometry = { workspace = true }
|
|
servo-url = { workspace = true }
|
|
strum = { workspace = true }
|
|
stylo = { workspace = true }
|
|
stylo_traits = { workspace = true }
|
|
url = { workspace = true }
|
|
uuid = { workspace = true }
|
|
webdriver = { workspace = true }
|
|
webrender_api = { workspace = true }
|