mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
This will ultimately make it simpler to update crate dependencies and reduce duplicate when specifying requirements. Generally, this change does not touch dependencies that are only used by a single crate. We could consider moving them to workspace dependencies in the future.
33 lines
930 B
TOML
33 lines
930 B
TOML
[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 = { git = "https://github.com/servo/webrender" }
|
|
webxr-api = { git = "https://github.com/servo/webxr", features = ["ipc"] }
|