mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
`webxr` depends on a very old verison of `time`, which allowed serializing monotonic clock output. This isn't possible on all platforms, so newer versions of `time` do not allow this. In order to stop using the old 0.1 versions of `time` we have to stop relying on times passed from `webxr` to Servo. This change does that, at the cost of removing the XR profiling feature. It has to be rewritten in another way in the `webxr` crate. Signed-off-by: Martin Robinson <mrobinson@igalia.com>
31 lines
817 B
TOML
31 lines
817 B
TOML
[package]
|
|
name = "canvas_traits"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
|
|
[lib]
|
|
name = "canvas_traits"
|
|
path = "lib.rs"
|
|
|
|
[features]
|
|
webgl_backtrace = []
|
|
|
|
[dependencies]
|
|
base = { workspace = true }
|
|
crossbeam-channel = { workspace = true }
|
|
euclid = { workspace = true }
|
|
ipc-channel = { workspace = true }
|
|
lazy_static = { workspace = true }
|
|
malloc_size_of = { workspace = true }
|
|
malloc_size_of_derive = { workspace = true }
|
|
pixels = { path = "../../pixels" }
|
|
serde = { workspace = true }
|
|
serde_bytes = { workspace = true }
|
|
servo_config = { path = "../../config" }
|
|
sparkle = { workspace = true }
|
|
style = { workspace = true }
|
|
webrender_api = { workspace = true }
|
|
webxr-api = { git = "https://github.com/servo/webxr", features = ["ipc"] }
|