
* Remove integration name (it is always eframe) * Remove egui_web crate * Move egui_web/CHANGELOG.md into eframe/CHANGELOG.md * Remove all mentions of egui_web * Remove epi crate and absorb into eframe * egui_glow: only use puffin on native * Remove WASM doc from CI (we don't generate it anyways!) * Remove eframe::epi and improve eframe docs
38 lines
1,023 B
TOML
38 lines
1,023 B
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"egui_demo_app",
|
|
"egui_demo_lib",
|
|
"egui_extras",
|
|
"egui_glium",
|
|
"egui_glow",
|
|
"egui-winit",
|
|
"egui",
|
|
"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",
|
|
"examples/svg",
|
|
]
|
|
|
|
[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
|