mirror of
https://github.com/servo/servo
synced 2026-04-26 17:45:19 +02:00
50 lines
1.2 KiB
TOML
50 lines
1.2 KiB
TOML
[package]
|
|
name = "compositing"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
license = "MPL-2.0"
|
|
edition = "2018"
|
|
publish = false
|
|
build = "build.rs"
|
|
|
|
[lib]
|
|
name = "compositing"
|
|
path = "lib.rs"
|
|
|
|
[features]
|
|
default = []
|
|
multiview = []
|
|
|
|
[dependencies]
|
|
canvas = { path = "../canvas" }
|
|
compositing_traits = { workspace = true }
|
|
crossbeam-channel = { workspace = true }
|
|
embedder_traits = { workspace = true }
|
|
euclid = { workspace = true }
|
|
fnv = { workspace = true }
|
|
gfx = { path = "../gfx" }
|
|
gfx_traits = { workspace = true }
|
|
gleam = { workspace = true }
|
|
image = { workspace = true }
|
|
ipc-channel = { workspace = true }
|
|
keyboard-types = { workspace = true }
|
|
libc = { workspace = true }
|
|
log = { workspace = true }
|
|
msg = { workspace = true }
|
|
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 }
|
|
time = { workspace = true }
|
|
webrender = { workspace = true }
|
|
webrender_api = { workspace = true }
|
|
webxr = { git = "https://github.com/servo/webxr" }
|
|
|
|
[build-dependencies]
|
|
toml = "0.5"
|