2021-10-21 02:54:13 +00:00
|
|
|
[workspace]
|
2024-03-14 04:49:04 +00:00
|
|
|
resolver = "2"
|
2022-09-25 06:14:03 +00:00
|
|
|
members = [
|
|
|
|
"emulator/core",
|
|
|
|
"emulator/frontends/common",
|
|
|
|
"emulator/frontends/console",
|
|
|
|
"emulator/frontends/minifb",
|
2023-05-10 04:50:42 +00:00
|
|
|
"tests/harte_tests",
|
|
|
|
"tests/rad_tests"
|
2022-09-25 06:14:03 +00:00
|
|
|
]
|
2022-09-30 02:55:12 +00:00
|
|
|
exclude = [
|
|
|
|
"emulator/frontends/pixels",
|
|
|
|
"emulator/frontends/macroquad",
|
2024-03-17 01:48:33 +00:00
|
|
|
"emulator/libraries/femtos",
|
|
|
|
"emulator/libraries/emulator-hal",
|
2022-09-30 02:55:12 +00:00
|
|
|
]
|
2022-09-25 06:14:03 +00:00
|
|
|
default-members = ["emulator/frontends/minifb"]
|
2023-04-23 17:38:33 +00:00
|
|
|
|
2024-03-03 07:48:19 +00:00
|
|
|
[profile.dev]
|
|
|
|
opt-level = 3
|
|
|
|
|
2023-04-23 17:38:33 +00:00
|
|
|
[profile.release]
|
|
|
|
debug = true
|
2024-03-14 04:49:04 +00:00
|
|
|
# TODO there are many overflow errors, which could be bugs
|
2023-06-10 22:28:21 +00:00
|
|
|
#overflow-checks = true
|
2023-04-23 17:38:33 +00:00
|
|
|
|