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>
68 lines
2.1 KiB
TOML
68 lines
2.1 KiB
TOML
[package]
|
|
name = "servo-constellation"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[lib]
|
|
name = "constellation"
|
|
path = "lib.rs"
|
|
|
|
[features]
|
|
default = []
|
|
bluetooth = ["bluetooth_traits"]
|
|
gamepad = ["embedder_traits/gamepad"]
|
|
tracing = ["dep:tracing", "canvas/tracing"]
|
|
vello = ["canvas/vello"]
|
|
webgpu = ["script_traits/webgpu"]
|
|
|
|
[lints.clippy]
|
|
unwrap_used = "deny"
|
|
panic = "deny"
|
|
|
|
[dependencies]
|
|
background_hang_monitor = { workspace = true }
|
|
background_hang_monitor_api = { workspace = true }
|
|
backtrace = { workspace = true }
|
|
base = { workspace = true }
|
|
bluetooth_traits = { workspace = true, optional = true }
|
|
canvas = { workspace = true }
|
|
canvas_traits = { workspace = true }
|
|
constellation_traits = { workspace = true }
|
|
content-security-policy = { workspace = true }
|
|
crossbeam-channel = { workspace = true }
|
|
devtools_traits = { workspace = true }
|
|
embedder_traits = { workspace = true }
|
|
euclid = { workspace = true }
|
|
fonts = { workspace = true }
|
|
ipc-channel = { workspace = true }
|
|
keyboard-types = { workspace = true }
|
|
layout_api = { workspace = true }
|
|
log = { workspace = true }
|
|
media = { workspace = true }
|
|
net = { workspace = true }
|
|
net_traits = { workspace = true }
|
|
paint_api = { workspace = true }
|
|
parking_lot = { workspace = true }
|
|
profile_traits = { workspace = true }
|
|
rand = { workspace = true }
|
|
rustc-hash = { workspace = true }
|
|
script_traits = { workspace = true }
|
|
serde = { workspace = true }
|
|
servo-tracing = { workspace = true }
|
|
servo_config = { workspace = true }
|
|
servo-url = { workspace = true }
|
|
storage_traits = { workspace = true }
|
|
stylo = { workspace = true }
|
|
stylo_traits = { workspace = true }
|
|
tracing = { workspace = true, optional = true }
|
|
webgpu = { workspace = true }
|
|
webgpu_traits = { workspace = true }
|
|
webxr-api = { workspace = true }
|
|
|
|
[target.'cfg(any(target_os="macos", all(not(target_os = "windows"), not(target_os = "ios"), not(target_os="android"), not(target_env="ohos"), not(target_arch="arm"), not(target_arch="aarch64"))))'.dependencies]
|
|
gaol = "0.2.1"
|