Steps can now be ordered (via drag and drop)

This commit is contained in:
Greg Burri 2025-01-15 01:37:49 +01:00
parent e355800f98
commit b86cded45d
8 changed files with 316 additions and 112 deletions

View file

@ -5,8 +5,12 @@ resolver = "2"
members = ["backend", "frontend", "common"]
[profile.release]
strip = true
codegen-units = 1
lto = true
# Tell `rustc` to optimize for small code size.
# opt-level = "s"
strip = true
[profile.release.package.frontend]
codegen-units = 1
strip = true
# To reduce the 'wasm' file size.
opt-level = "z"