moa/Cargo.toml
transistor fd056c8d7b Rewrote core into libraries/system, using the emulator-hal interfaces
This is the proof-of-concept using computie, since it only needs one
peripheral and the m68k cpu, which was already rewritten and tested
2024-03-31 22:31:40 -07:00

28 lines
590 B
TOML

[workspace]
resolver = "2"
members = [
"emulator/core",
"emulator/libraries/system",
"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