diff options
author | Alex Touchet <26315797+atouchet@users.noreply.github.com> | 2024-09-11 13:57:46 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-11 20:57:46 +0000 |
commit | 777fb81260ed10e016370dcd83fc750367e97535 (patch) | |
tree | 63f6b598d347015cc1a9228fe77445887fbf2c2c | |
parent | b42f5eaa17c897270e9de5dadc6ab19fb1dfff43 (diff) | |
download | servo-777fb81260ed10e016370dcd83fc750367e97535.tar.gz servo-777fb81260ed10e016370dcd83fc750367e97535.zip |
Use raqote from crates.io and update canvas Cargo.toml (#33411)
Signed-off-by: Alex Touchet <26315797+atouchet@users.noreply.github.com>
-rw-r--r-- | Cargo.lock | 5 | ||||
-rw-r--r-- | components/canvas/Cargo.toml | 6 |
2 files changed, 6 insertions, 5 deletions
diff --git a/Cargo.lock b/Cargo.lock index 4cd5637ef7f..1e546a2702b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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]] diff --git a/components/canvas/Cargo.toml b/components/canvas/Cargo.toml index f2ff5197406..d403ec063c8 100644 --- a/components/canvas/Cargo.toml +++ b/components/canvas/Cargo.toml @@ -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"] } |