gecko-dev/gfx/wr/Cargo.toml
Glenn Watson 34ec41f9b9 Bug 1927932 - Update mozangle in wrench to 0.5.2. r=gfx-reviewers,lsalzman
This is necessary to export some Angle EGL extensions that are
used by the upcoming compositor changes.

Differential Revision: https://phabricator.services.mozilla.com/D227277
2024-11-05 19:18:18 +00:00

32 lines
623 B
TOML

[workspace]
members = [
"examples",
"webrender",
"webrender_api",
"wrench",
"example-compositor/compositor",
]
resolver = "2"
[workspace.dependencies]
glean = "=61.2.0"
[profile.release]
debug = true
panic = "abort"
[profile.dev]
panic = "abort"
# optimizing glsl more makes a big difference in swgl build times
[profile.dev.package.glsl]
opt-level = 2
[profile.release.package.glsl]
opt-level = 2
[patch.crates-io]
firefox-on-glean = { path = "fog" }
# use a patched version of glutin that works on android
glutin = { version = "0.28", git = "https://github.com/jamienicol/glutin", branch="wr" }