mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
These two traits both exposed different parts of the compositing API, but now that the compositor doesn't depend directly on `script` any longer and the `script_traits` crate has been split into the `constellation_traits` crate, this can be finally be cleaned up without causing circular dependencies. In addition, some unit tests for the `IOPCompositor`'s scroll node tree are also moved into `compositing_traits` as well. Testing: This just combines two crates, so no new tests are necessary. Fixes: #35984. Signed-off-by: Martin Robinson <mrobinson@igalia.com> Signed-off-by: Martin Robinson <mrobinson@igalia.com>
44 lines
1.3 KiB
TOML
44 lines
1.3 KiB
TOML
[package]
|
|
name = "script_layout_interface"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[lib]
|
|
name = "script_layout_interface"
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
base = { workspace = true }
|
|
app_units = { workspace = true }
|
|
atomic_refcell = { workspace = true }
|
|
canvas_traits = { workspace = true }
|
|
compositing_traits = { workspace = true }
|
|
constellation_traits = { 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 }
|
|
ipc-channel = { workspace = true }
|
|
libc = { workspace = true }
|
|
malloc_size_of = { workspace = true }
|
|
malloc_size_of_derive = { workspace = true }
|
|
metrics = { path = "../../metrics" }
|
|
net_traits = { workspace = true }
|
|
pixels = { path = "../../pixels" }
|
|
profile_traits = { workspace = true }
|
|
range = { path = "../../range" }
|
|
script_traits = { workspace = true }
|
|
selectors = { workspace = true }
|
|
serde = { workspace = true }
|
|
servo_arc = { workspace = true }
|
|
servo_url = { path = "../../url" }
|
|
stylo = { workspace = true }
|
|
stylo_traits = { workspace = true }
|
|
webrender_api = { workspace = true }
|