mirror of
https://github.com/transistorfet/moa.git
synced 2024-11-12 05:06:08 +00:00
27 lines
557 B
TOML
27 lines
557 B
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"emulator/core",
|
|
"emulator/frontends/common",
|
|
"emulator/frontends/console",
|
|
"emulator/frontends/minifb",
|
|
"tests/harte_tests",
|
|
"tests/rad_tests"
|
|
]
|
|
exclude = [
|
|
"emulator/frontends/pixels",
|
|
"emulator/frontends/macroquad",
|
|
"emulator/libraries/femtos",
|
|
"emulator/libraries/emulator-hal",
|
|
]
|
|
default-members = ["emulator/frontends/minifb"]
|
|
|
|
[profile.dev]
|
|
opt-level = 3
|
|
|
|
[profile.release]
|
|
debug = true
|
|
# TODO there are many overflow errors, which could be bugs
|
|
#overflow-checks = true
|
|
|