mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
Removed unused dependencies in various crates using cargo-machete, grep and cargo-udeps. Testing: The CI tests if any dependencies were used that are removed. Signed-off-by: Narfinger <Narfinger@users.noreply.github.com>
68 lines
1.9 KiB
TOML
68 lines
1.9 KiB
TOML
[package]
|
|
name = "layout"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[lib]
|
|
name = "layout"
|
|
path = "lib.rs"
|
|
test = true
|
|
doctest = false
|
|
|
|
[features]
|
|
tracing = ["dep:tracing"]
|
|
|
|
[dependencies]
|
|
app_units = { workspace = true }
|
|
atomic_refcell = { workspace = true }
|
|
base = { workspace = true }
|
|
bitflags = { workspace = true }
|
|
compositing_traits = { workspace = true }
|
|
constellation_traits = { workspace = true }
|
|
data-url = { workspace = true }
|
|
embedder_traits = { workspace = true }
|
|
euclid = { workspace = true }
|
|
fnv = { workspace = true }
|
|
fonts = { path = "../fonts" }
|
|
fonts_traits = { workspace = true }
|
|
fxhash = { workspace = true }
|
|
html5ever = { workspace = true }
|
|
icu_locid = { workspace = true }
|
|
icu_segmenter = { workspace = true }
|
|
ipc-channel = { workspace = true }
|
|
itertools = { workspace = true }
|
|
log = { workspace = true }
|
|
malloc_size_of = { workspace = true }
|
|
malloc_size_of_derive = { workspace = true }
|
|
net_traits = { workspace = true }
|
|
parking_lot = { workspace = true }
|
|
pixels = { path = "../pixels" }
|
|
profile_traits = { workspace = true }
|
|
range = { path = "../range" }
|
|
rayon = { workspace = true }
|
|
script = { path = "../script" }
|
|
script_layout_interface = { workspace = true }
|
|
script_traits = { workspace = true }
|
|
selectors = { workspace = true }
|
|
servo_arc = { workspace = true }
|
|
servo_config = { path = "../config" }
|
|
servo_geometry = { path = "../geometry" }
|
|
servo_url = { path = "../url" }
|
|
stylo = { workspace = true }
|
|
stylo_atoms = { workspace = true }
|
|
stylo_traits = { workspace = true }
|
|
taffy = { workspace = true }
|
|
tracing = { workspace = true, optional = true }
|
|
unicode-bidi = { workspace = true }
|
|
unicode-script = { workspace = true }
|
|
url = { workspace = true }
|
|
webrender_api = { workspace = true }
|
|
xi-unicode = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
num-traits = { workspace = true }
|
|
quickcheck = "1"
|