diff options
Diffstat (limited to 'components/shared/canvas/Cargo.toml')
-rw-r--r-- | components/shared/canvas/Cargo.toml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/components/shared/canvas/Cargo.toml b/components/shared/canvas/Cargo.toml new file mode 100644 index 00000000000..6f3eca8c160 --- /dev/null +++ b/components/shared/canvas/Cargo.toml @@ -0,0 +1,33 @@ +[package] +name = "canvas_traits" +version = "0.0.1" +authors = ["The Servo Project Developers"] +license = "MPL-2.0" +edition = "2018" +publish = false + +[lib] +name = "canvas_traits" +path = "lib.rs" + +[features] +webgl_backtrace = [] +xr-profile = ["webxr-api/profile", "time"] + +[dependencies] +crossbeam-channel = { workspace = true } +cssparser = { workspace = true } +euclid = { workspace = true } +ipc-channel = { workspace = true } +lazy_static = { workspace = true } +malloc_size_of = { path = "../../malloc_size_of" } +malloc_size_of_derive = { workspace = true } +pixels = { path = "../../pixels" } +serde = { workspace = true } +serde_bytes = { workspace = true } +servo_config = { path = "../../config" } +sparkle = { workspace = true } +style = { path = "../../style" } +time = { workspace = true, optional = true } +webrender_api = { workspace = true } +webxr-api = { git = "https://github.com/servo/webxr", features = ["ipc"] } |