mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
`dirs-next` is still used by the version of the `term` crate we are using, but this also remoes a version of `cstr` so our dependency count does not change. A new version of `raqote` hasn't been released, so this depends on the upstream repository directly. It's been almost 4 months since the release has been ready -- so it's unclear when it will happen. Fixes #32801. Signed-off-by: Martin Robinson <mrobinson@igalia.com>
48 lines
1.4 KiB
TOML
48 lines
1.4 KiB
TOML
[package]
|
|
name = "canvas"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
|
|
[lib]
|
|
name = "canvas"
|
|
path = "lib.rs"
|
|
|
|
[features]
|
|
webgl_backtrace = ["canvas_traits/webgl_backtrace"]
|
|
|
|
[dependencies]
|
|
app_units = { workspace = true }
|
|
bitflags = { workspace = true }
|
|
byteorder = { workspace = true }
|
|
canvas_traits = { workspace = true }
|
|
crossbeam-channel = { workspace = true }
|
|
cssparser = { workspace = true }
|
|
euclid = { workspace = true }
|
|
font-kit = { version = "0.14" }
|
|
fnv = { workspace = true }
|
|
fonts = { path = "../fonts" }
|
|
half = "2"
|
|
ipc-channel = { workspace = true }
|
|
log = { workspace = true }
|
|
lyon_geom = "1.0.4"
|
|
net_traits = { workspace = true }
|
|
num-traits = { workspace = true }
|
|
parking_lot = { workspace = true }
|
|
pathfinder_geometry = "0.5"
|
|
pixels = { path = "../pixels" }
|
|
range = { path = "../range" }
|
|
raqote = { git = "https://github.com/jrmuizel/raqote", rev = "64716c8" }
|
|
servo_arc = { workspace = true }
|
|
sparkle = { workspace = true }
|
|
style = { workspace = true }
|
|
style_traits = { workspace = true }
|
|
surfman = { workspace = true }
|
|
unicode-script = { workspace = true }
|
|
webrender = { workspace = true }
|
|
webrender_api = { workspace = true }
|
|
webrender_traits = { workspace = true }
|
|
webxr-api = { git = "https://github.com/servo/webxr", features = ["ipc"] }
|
|
webxr = { git = "https://github.com/servo/webxr", features = ["ipc"] }
|