mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01: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.
42 lines
769 B
TOML
42 lines
769 B
TOML
[package]
|
|
name = "canvas"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
|
|
[lib]
|
|
name = "canvas"
|
|
path = "lib.rs"
|
|
|
|
[dependencies.azure]
|
|
git = "https://github.com/servo/rust-azure"
|
|
|
|
[dependencies.layers]
|
|
git = "https://github.com/servo/rust-layers"
|
|
|
|
|
|
[dependencies.canvas_traits]
|
|
path = "../canvas_traits"
|
|
|
|
[dependencies.util]
|
|
path = "../util"
|
|
|
|
[dependencies.gfx_traits]
|
|
path = "../gfx_traits"
|
|
|
|
[dependencies.offscreen_gl_context]
|
|
git = "https://github.com/ecoal95/rust-offscreen-rendering-context"
|
|
features = ["texture_surface"]
|
|
|
|
[dependencies.ipc-channel]
|
|
git = "https://github.com/pcwalton/ipc-channel"
|
|
|
|
[dependencies.cssparser]
|
|
version = "0.3"
|
|
features = [ "serde-serialization" ]
|
|
|
|
[dependencies]
|
|
log = "0.3"
|
|
num = "0.1.24"
|
|
gleam = "0.1"
|
|
euclid = "0.1"
|
|
|