Use raqote from crates.io and update canvas Cargo.toml (#33411)

Signed-off-by: Alex Touchet <26315797+atouchet@users.noreply.github.com>
This commit is contained in:
Alex Touchet 2024-09-11 13:57:46 -07:00 committed by GitHub
parent b42f5eaa17
commit 777fb81260
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 5 deletions

5
Cargo.lock generated
View file

@ -5437,7 +5437,8 @@ checksum = "9c8a99fddc9f0ba0a85884b8d14e3592853e787d581ca1816c91349b10e4eeab"
[[package]]
name = "raqote"
version = "0.8.5"
source = "git+https://github.com/jrmuizel/raqote?rev=64716c8#64716c8d68436451ca151bb0c70ba300fd964f42"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "324990858d2a5df9ccd30b2e8b474030bd503297378a3fc0944c37af00eb8903"
dependencies = [
"euclid",
"font-kit",
@ -8113,7 +8114,7 @@ version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
dependencies = [
"windows-sys 0.59.0",
"windows-sys 0.52.0",
]
[[package]]

View file

@ -21,8 +21,8 @@ canvas_traits = { workspace = true }
crossbeam-channel = { workspace = true }
cssparser = { workspace = true }
euclid = { workspace = true }
font-kit = { version = "0.14" }
fnv = { workspace = true }
font-kit = "0.14"
fonts = { path = "../fonts" }
half = "2"
ipc-channel = { workspace = true }
@ -34,7 +34,7 @@ parking_lot = { workspace = true }
pathfinder_geometry = "0.5"
pixels = { path = "../pixels" }
range = { path = "../range" }
raqote = { git = "https://github.com/jrmuizel/raqote", rev = "64716c8" }
raqote = "0.8.5"
servo_arc = { workspace = true }
sparkle = { workspace = true }
style = { workspace = true }
@ -44,5 +44,5 @@ 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"] }
webxr-api = { git = "https://github.com/servo/webxr", features = ["ipc"] }