mirror of
https://github.com/servo/servo.git
synced 2025-08-01 11:40:30 +01:00
This trades quite a bit of complicated code in Servo for few more messages and a significant performance improvement. In particular, WebRender can search the entire display list at once instead of ping-ponging down the pipeline tree. This allows us to send mouse events to the correct pipeline immediately.
31 lines
804 B
TOML
31 lines
804 B
TOML
[package]
|
|
name = "compositing"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
license = "MPL-2.0"
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "compositing"
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
euclid = "0.15"
|
|
gfx_traits = {path = "../gfx_traits"}
|
|
gleam = "0.4"
|
|
image = "0.16"
|
|
ipc-channel = "0.9"
|
|
libc = "0.2"
|
|
log = "0.3.5"
|
|
msg = {path = "../msg"}
|
|
net_traits = {path = "../net_traits"}
|
|
nonzero = {path = "../nonzero"}
|
|
profile_traits = {path = "../profile_traits"}
|
|
script_traits = {path = "../script_traits"}
|
|
servo_config = {path = "../config"}
|
|
servo_geometry = {path = "../geometry"}
|
|
servo_url = {path = "../url"}
|
|
style_traits = {path = "../style_traits"}
|
|
time = "0.1.17"
|
|
webrender = {git = "https://github.com/servo/webrender"}
|
|
webrender_api = {git = "https://github.com/servo/webrender", features = ["ipc"]}
|