mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
Fix missing canvas text on UWP This addresses the missing fonts under UWP by updating font-kit and assorted dependencies that all depend on older incompatible versions of freetype. This also works around #27492 by using a fork of webrender that cherry-picks required dependency updates without bringing in the commit that exposes an ANGLE crash. --- - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors - [x] These changes fix #27515 - [x] These changes do not require tests because no UWP tests.
52 lines
1.5 KiB
TOML
52 lines
1.5 KiB
TOML
[package]
|
|
name = "canvas"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
license = "MPL-2.0"
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "canvas"
|
|
path = "lib.rs"
|
|
|
|
[features]
|
|
no-wgl = ["surfman/sm-no-wgl"]
|
|
webgl_backtrace = ["canvas_traits/webgl_backtrace"]
|
|
xr-profile = ["webxr-api/profile", "time"]
|
|
|
|
[dependencies]
|
|
bitflags = "1.0"
|
|
byteorder = "1"
|
|
canvas_traits = { path = "../canvas_traits" }
|
|
crossbeam-channel = "0.4"
|
|
cssparser = "0.27"
|
|
euclid = "0.20"
|
|
font-kit = "0.10"
|
|
fnv = "1.0"
|
|
gfx = { path = "../gfx" }
|
|
gleam = "0.12"
|
|
half = "1"
|
|
ipc-channel = "0.14"
|
|
log = "0.4"
|
|
lyon_geom = "0.14"
|
|
num-traits = "0.2"
|
|
pathfinder_geometry = "0.5"
|
|
pixels = { path = "../pixels" }
|
|
raqote = { git = "https://github.com/jrmuizel/raqote", features = ["text"] }
|
|
servo_arc = { path = "../servo_arc" }
|
|
servo_config = { path = "../config" }
|
|
sparkle = "0.1.25"
|
|
style = { path = "../style" }
|
|
style_traits = { path = "../style_traits" }
|
|
# NOTE: the sm-angle feature only enables angle on windows, not other platforms!
|
|
surfman = { version = "0.3", features = ["sm-angle","sm-angle-default"] }
|
|
surfman-chains = "0.5"
|
|
surfman-chains-api = "0.2"
|
|
time = { version = "0.1.0", optional = true }
|
|
webrender = { git = "https://github.com/servo/webrender" }
|
|
webrender_api = { git = "https://github.com/servo/webrender" }
|
|
webrender_surfman = { path = "../webrender_surfman" }
|
|
webrender_traits = { path = "../webrender_traits" }
|
|
webxr-api = { git = "https://github.com/servo/webxr", features = ["ipc"] }
|
|
webxr = { git = "https://github.com/servo/webxr", features = ["ipc"] }
|