mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
Now that Stylo considers `servo` as the default feature, Servo doesn't need to specify `features = ["servo"]`. Also use the same crate names as Stylo, rather than renaming them with `package`. Signed-off-by: Oriol Brufau <obrufau@igalia.com>
31 lines
787 B
TOML
31 lines
787 B
TOML
[package]
|
|
name = "canvas_traits"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[lib]
|
|
name = "canvas_traits"
|
|
path = "lib.rs"
|
|
|
|
[features]
|
|
webgl_backtrace = []
|
|
|
|
[dependencies]
|
|
base = { workspace = true }
|
|
crossbeam-channel = { workspace = true }
|
|
euclid = { workspace = true }
|
|
glow = { workspace = true }
|
|
ipc-channel = { 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" }
|
|
stylo = { workspace = true }
|
|
webrender_api = { workspace = true }
|
|
webxr-api = { workspace = true, features = ["ipc"] }
|