mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
* Add webxr feature flag Add webxr feature flag to embedder_traits Add webxr flag to constellation Add webxr flag to compositor Add webxr flag to canvas Turn registry into optional Add webxr flag to servo lib Signed-off-by: Wu Yu Wei <yuweiwu@pm.me> Co-authored-by: august kline <me@augustkline.com> * Cargo fmt Signed-off-by: Wu Yu Wei <yuweiwu@pm.me> * Add missing license Signed-off-by: Wu Yu Wei <yuweiwu@pm.me> * Cargo clippy Signed-off-by: Wu Yu Wei <yuweiwu@pm.me> --------- Signed-off-by: Wu Yu Wei <yuweiwu@pm.me> Co-authored-by: august kline <me@augustkline.com>
53 lines
1.4 KiB
TOML
53 lines
1.4 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 = []
|
|
tracing = ["dep:tracing"]
|
|
webxr = ["dep:webxr"]
|
|
|
|
[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, optional = true }
|
|
webrender = { workspace = true }
|
|
webrender_api = { workspace = true }
|
|
webrender_traits = { workspace = true }
|
|
webxr = { workspace = true, optional = true }
|
|
|
|
[dev-dependencies]
|
|
surfman = { workspace = true }
|