mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
This is incomplete in several ways: * It assumes that there's only one constellation (i.e. top level browsing context), ever. * The session support is very basic indeed (no capabilities) * Passing channels over channels may not sit well with IPC * The error handling is mostly missing
64 lines
1.1 KiB
TOML
64 lines
1.1 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.layout_traits]
|
|
path = "../layout_traits"
|
|
|
|
[dependencies.script_traits]
|
|
path = "../script_traits"
|
|
|
|
[dependencies.msg]
|
|
path = "../msg"
|
|
|
|
[dependencies.net]
|
|
path = "../net"
|
|
|
|
[dependencies.profile]
|
|
path = "../profile"
|
|
|
|
[dependencies.net_traits]
|
|
path = "../net_traits"
|
|
|
|
[dependencies.util]
|
|
path = "../util"
|
|
|
|
[dependencies.webdriver_server]
|
|
path = "../webdriver_server"
|
|
|
|
[dependencies.devtools_traits]
|
|
path = "../devtools_traits"
|
|
|
|
[dependencies.azure]
|
|
git = "https://github.com/servo/rust-azure"
|
|
|
|
[dependencies.geom]
|
|
git = "https://github.com/servo/rust-geom"
|
|
|
|
[dependencies.layers]
|
|
git = "https://github.com/servo/rust-layers"
|
|
|
|
[dependencies.png]
|
|
git = "https://github.com/servo/rust-png"
|
|
|
|
[dependencies.core_graphics]
|
|
git = "https://github.com/servo/rust-core-graphics"
|
|
|
|
[dependencies.core_text]
|
|
git = "https://github.com/servo/rust-core-text"
|
|
|
|
[dependencies.gleam]
|
|
git = "https://github.com/servo/gleam"
|
|
|
|
[dependencies]
|
|
url = "0.2.16"
|
|
time = "0.1.17"
|
|
libc = "*"
|