mirror of https://github.com/emilk/egui.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
863 B
29 lines
863 B
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"egui_demo_app",
|
|
"egui_demo_lib",
|
|
"egui_glium",
|
|
"egui_glow",
|
|
"egui_web",
|
|
"egui-winit",
|
|
"egui",
|
|
"emath",
|
|
"epaint",
|
|
"epi",
|
|
]
|
|
|
|
[profile.dev]
|
|
split-debuginfo = "unpacked" # faster debug builds on mac
|
|
|
|
[profile.release]
|
|
# lto = true # VERY slightly smaller wasm
|
|
# opt-level = 's' # 10-20% smaller wasm compared to `opt-level = 3`
|
|
# opt-level = 1 # very slow and big wasm. Don't do this.
|
|
opt-level = 2 # fast and small wasm, basically same as `opt-level = 's'`
|
|
# opt-level = 3 # unecessarily large wasm for no performance gain
|
|
|
|
# debug = true # include debug symbols, useful when profiling wasm
|
|
|
|
[patch.crates-io]
|
|
ureq = { git = "https://github.com/emilk/ureq/", branch = "opt-in-webpki-roots" } # See https://github.com/algesten/ureq/pull/479 / https://github.com/algesten/ureq/issues/478
|
|
|