mirror of
https://github.com/servo/servo
synced 2026-05-09 16:42:16 +02: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.
26 lines
500 B
TOML
26 lines
500 B
TOML
[package]
|
|
name = "msg"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
license = "MPL-2.0"
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "msg"
|
|
path = "lib.rs"
|
|
test = false
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
ipc-channel = "0.14"
|
|
lazy_static = "1"
|
|
malloc_size_of = { path = "../malloc_size_of" }
|
|
malloc_size_of_derive = "0.1"
|
|
parking_lot = "0.10"
|
|
serde = "1.0.60"
|
|
webrender_api = { git = "https://github.com/servo/webrender" }
|
|
|
|
[dev-dependencies]
|
|
size_of_test = { path = "../size_of_test" }
|