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>
26 lines
682 B
TOML
26 lines
682 B
TOML
[package]
|
|
name = "embedder_traits"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[lib]
|
|
name = "embedder_traits"
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
base = { workspace = true }
|
|
cfg-if = { workspace = true }
|
|
crossbeam-channel = { workspace = true }
|
|
ipc-channel = { workspace = true }
|
|
keyboard-types = { workspace = true }
|
|
log = { workspace = true }
|
|
num-derive = "0.4"
|
|
num-traits = { workspace = true }
|
|
serde = { workspace = true }
|
|
servo_url = { path = "../../url" }
|
|
webrender_api = { workspace = true }
|
|
webxr-api = { git = "https://github.com/servo/webxr", features = ["ipc"] }
|