mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
This is another step preparing for building Servo without `mach`. Fixes #33430. Signed-off-by: Martin Robinson <mrobinson@igalia.com>
51 lines
1.3 KiB
TOML
51 lines
1.3 KiB
TOML
[package]
|
|
name = "compositing"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[lib]
|
|
name = "compositing"
|
|
path = "lib.rs"
|
|
|
|
[features]
|
|
default = []
|
|
multiview = []
|
|
|
|
[dependencies]
|
|
base = { workspace = true }
|
|
canvas = { path = "../canvas" }
|
|
compositing_traits = { workspace = true }
|
|
crossbeam-channel = { workspace = true }
|
|
embedder_traits = { workspace = true }
|
|
euclid = { workspace = true }
|
|
fnv = { workspace = true }
|
|
fonts = { path = "../fonts" }
|
|
fonts_traits = { workspace = true }
|
|
gleam = { workspace = true }
|
|
image = { workspace = true }
|
|
ipc-channel = { workspace = true }
|
|
keyboard-types = { workspace = true }
|
|
libc = { workspace = true }
|
|
log = { workspace = true }
|
|
net = { path = "../net" }
|
|
net_traits = { workspace = true }
|
|
pixels = { path = "../pixels" }
|
|
profile_traits = { workspace = true }
|
|
script_traits = { workspace = true }
|
|
servo_config = { path = "../config" }
|
|
servo-media = { workspace = true }
|
|
servo_geometry = { path = "../geometry" }
|
|
servo_url = { path = "../url" }
|
|
style_traits = { workspace = true }
|
|
tracing = { workspace = true }
|
|
webrender = { workspace = true }
|
|
webrender_api = { workspace = true }
|
|
webrender_traits = { workspace = true }
|
|
webxr = { git = "https://github.com/servo/webxr" }
|
|
|
|
[dev-dependencies]
|
|
surfman = { workspace = true }
|