Cargo.toml (691B)
1 [workspace] 2 members = [ 3 "examples", 4 "webrender", 5 "webrender_api", 6 "wrench", 7 "example-compositor/compositor", 8 ] 9 resolver = "2" 10 11 [workspace.dependencies] 12 gleam = "0.15.1" 13 glean = "=66.2.0" 14 15 [profile.release] 16 debug = true 17 panic = "abort" 18 19 [profile.dev] 20 panic = "abort" 21 22 # optimizing glsl more makes a big difference in swgl build times 23 [profile.dev.package.glsl] 24 opt-level = 2 25 26 [profile.release.package.glsl] 27 opt-level = 2 28 29 [patch.crates-io] 30 firefox-on-glean = { path = "fog" } 31 # use a patched version of glutin that works on android 32 glutin = { version = "0.28", git = "https://github.com/jamienicol/glutin", branch="wr" } 33 wr_malloc_size_of = { path = "wr_malloc_size_of" }