mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
Now that `webxr` is integrated into the Servo directory, `webxr` can depend on `embedder_traits` instead of having it re-export this type conditionally (and sometimes duplicating it). Testing: This just moves a data type, so no tests are necessary. Signed-off-by: Martin Robinson <mrobinson@igalia.com> Signed-off-by: Martin Robinson <mrobinson@igalia.com>
26 lines
790 B
TOML
26 lines
790 B
TOML
[package]
|
|
name = "webxr-api"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
rust-version.workspace = true
|
|
keywords = ["ar", "headset", "openxr", "vr", "webxr"]
|
|
description = '''A safe Rust API that provides a way to interact with
|
|
virtual reality and augmented reality devices and integration with OpenXR.
|
|
The API is inspired by the WebXR Device API (https://www.w3.org/TR/webxr/)
|
|
but adapted to Rust design patterns.'''
|
|
|
|
[lib]
|
|
path = "lib.rs"
|
|
|
|
[features]
|
|
ipc = ["serde", "ipc-channel", "euclid/serde"]
|
|
|
|
[dependencies]
|
|
embedder_traits = { workspace = true }
|
|
euclid = { workspace = true }
|
|
ipc-channel = { workspace = true, optional = true }
|
|
log = { workspace = true }
|
|
serde = { workspace = true, optional = true }
|