egui/Cargo.toml

41 lines
1 KiB
TOML
Raw Normal View History

2018-12-30 20:08:29 +00:00
[workspace]
resolver = "2"
2018-12-30 20:08:29 +00:00
members = [
"egui_demo_app",
"egui_demo_lib",
"egui_extras",
"egui_glium",
"egui_glow",
"egui-wgpu",
"egui-winit",
"egui",
2021-01-10 10:37:47 +00:00
"emath",
"epaint",
"examples/confirm_exit",
"examples/custom_3d_glow",
"examples/custom_3d_three-d",
"examples/custom_font",
"examples/custom_font_style",
"examples/custom_window_frame",
"examples/download_image",
"examples/file_dialog",
"examples/hello_world",
"examples/puffin_profiler",
"examples/retained_image",
2022-05-29 18:33:04 +00:00
"examples/screenshot",
"examples/svg",
2018-12-30 20:08:29 +00:00
]
2020-05-20 16:58:21 +00:00
2021-04-18 21:15:07 +00:00
[profile.dev]
split-debuginfo = "unpacked" # faster debug builds on mac
2020-05-20 16:58:21 +00:00
[profile.release]
2020-05-21 08:31:22 +00:00
# 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
2021-04-01 21:07:43 +00:00
# debug = true # include debug symbols, useful when profiling wasm