diff options
author | Martin Robinson <mrobinson@webkit.org> | 2023-07-01 17:33:19 +0200 |
---|---|---|
committer | Martin Robinson <mrobinson@igalia.com> | 2023-07-01 18:41:54 +0200 |
commit | 96eeb5865cb4e9ec5d48ef4803418620e24dbaf4 (patch) | |
tree | a1f3114d2a5be8cfd693af7f093d71626ac1640f /components/servo | |
parent | f034eb60323c1501ba00e86cb7c2de243f41b56c (diff) | |
download | servo-96eeb5865cb4e9ec5d48ef4803418620e24dbaf4.tar.gz servo-96eeb5865cb4e9ec5d48ef4803418620e24dbaf4.zip |
Update mozangle
This should allow servo to take advantage of faster compilation speeds
on Windows.
Diffstat (limited to 'components/servo')
-rw-r--r-- | components/servo/Cargo.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/servo/Cargo.toml b/components/servo/Cargo.toml index 67b91717034..017114ccc92 100644 --- a/components/servo/Cargo.toml +++ b/components/servo/Cargo.toml @@ -13,7 +13,6 @@ crate-type = ["rlib"] [features] debugmozjs = ["script/debugmozjs"] -egl = ["mozangle/egl"] googlevr = ["webxr/googlevr"] jitspew = ["script/jitspew"] js_backtrace = ["script/js_backtrace"] @@ -61,6 +60,7 @@ layout_thread_2013 = { path = "../layout_thread", optional = true } layout_thread_2020 = { path = "../layout_thread_2020", optional = true } log = { workspace = true } media = { path = "../media" } +mozangle = { workspace = true } msg = { path = "../msg" } net = { path = "../net" } net_traits = { path = "../net_traits" } @@ -92,4 +92,4 @@ webxr-api = { git = "https://github.com/servo/webxr" } gaol = "0.2.1" [target.'cfg(target_os = "windows")'.dependencies] -mozangle = { version = "0.3", features = ["egl", "build_dlls"] } +mozangle = { workspace = true, features = ["egl", "build_dlls"] } |