mirror of
https://github.com/servo/servo.git
synced 2025-10-17 08:49:21 +01:00
This is based on compiling with `RUSTFLAGS="-W unused_crate_dependencies"` (CC https://github.com/rust-lang/rust/pull/72342) in a recent Nightly (more so than used in the tree as of this writing, CC https://github.com/servo/servo/issues/26661 for work-arounds). Only one crate is actually removed from the dependency graph, others are still dependended from other places.
23 lines
571 B
TOML
23 lines
571 B
TOML
[package]
|
|
name = "layout_traits"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
license = "MPL-2.0"
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "layout_traits"
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
crossbeam-channel = "0.4"
|
|
gfx = { path = "../gfx" }
|
|
ipc-channel = "0.14"
|
|
metrics = { path = "../metrics" }
|
|
msg = { path = "../msg" }
|
|
net_traits = { path = "../net_traits" }
|
|
profile_traits = { path = "../profile_traits" }
|
|
script_traits = { path = "../script_traits" }
|
|
servo_url = { path = "../url" }
|
|
webrender_api = { git = "https://github.com/servo/webrender" }
|