mirror of
https://github.com/servo/servo
synced 2026-05-13 02:17:06 +02:00
To actually make the multiprocess communication work, we'll need to reroute the task creation to the pipeline or the compositor. But this works as a first step.
83 lines
1.5 KiB
TOML
83 lines
1.5 KiB
TOML
[package]
|
|
name = "compositing"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
|
|
[lib]
|
|
name = "compositing"
|
|
path = "lib.rs"
|
|
|
|
[dependencies.gfx]
|
|
path = "../gfx"
|
|
|
|
[dependencies.gfx_traits]
|
|
path = "../gfx_traits"
|
|
|
|
[dependencies.layout_traits]
|
|
path = "../layout_traits"
|
|
|
|
[dependencies.script_traits]
|
|
path = "../script_traits"
|
|
|
|
[dependencies.msg]
|
|
path = "../msg"
|
|
|
|
[dependencies.net]
|
|
path = "../net"
|
|
|
|
[dependencies.profile_traits]
|
|
path = "../profile_traits"
|
|
|
|
[dependencies.net_traits]
|
|
path = "../net_traits"
|
|
|
|
[dependencies.style]
|
|
path = "../style"
|
|
|
|
[dependencies.util]
|
|
path = "../util"
|
|
|
|
[dependencies.devtools_traits]
|
|
path = "../devtools_traits"
|
|
|
|
[dependencies.canvas_traits]
|
|
path = "../canvas_traits"
|
|
|
|
[dependencies.canvas]
|
|
path = "../canvas"
|
|
|
|
[dependencies.azure]
|
|
git = "https://github.com/servo/rust-azure"
|
|
|
|
[dependencies.layers]
|
|
git = "https://github.com/servo/rust-layers"
|
|
|
|
[dependencies.png]
|
|
git = "https://github.com/servo/rust-png"
|
|
features = [ "serde-serialization" ]
|
|
|
|
[dependencies.clipboard]
|
|
git = "https://github.com/aweinstock314/rust-clipboard"
|
|
|
|
[dependencies.ipc-channel]
|
|
git = "https://github.com/pcwalton/ipc-channel"
|
|
|
|
[dependencies.offscreen_gl_context]
|
|
git = "https://github.com/ecoal95/rust-offscreen-rendering-context"
|
|
features = ["texture_surface"]
|
|
|
|
[dependencies]
|
|
log = "0.3"
|
|
num = "0.1.24"
|
|
url = "0.2.36"
|
|
time = "0.1.17"
|
|
libc = "0.1"
|
|
gleam = "0.1"
|
|
euclid = "0.1"
|
|
|
|
[target.x86_64-apple-darwin.dependencies]
|
|
core-graphics = "0.1"
|
|
|
|
[target.x86_64-apple-darwin.dependencies.core-text]
|
|
git = "https://github.com/servo/core-text-rs"
|