moa/emulator/frontends/console/Cargo.toml

23 lines
670 B
TOML
Raw Normal View History

[package]
2024-02-25 03:26:28 +00:00
name = "moa-console"
version = "0.1.0"
2022-10-09 16:40:20 +00:00
edition = "2021"
default-run = "moa-computie"
[dependencies]
2024-02-24 21:02:09 +00:00
log = "0.4"
clap = "^4"
2024-03-17 19:26:00 +00:00
simple_logger = "^4"
femtos = "0.1"
2022-10-09 16:40:20 +00:00
2024-02-25 03:26:28 +00:00
moa-core = { path = "../../core" }
moa-host = { path = "../../libraries/host" }
2024-02-25 03:26:28 +00:00
moa-common = { path = "../common", features = ["tty"] }
moa-debugger = { path = "../../libraries/debugger" }
2024-02-25 03:26:28 +00:00
moa-systems-genesis = { path = "../../systems/genesis" }
moa-systems-computie = { path = "../../systems/computie" }
moa-m68k = { path = "../../cpus/m68k", features = ["moa"] }
2024-02-25 03:26:28 +00:00
moa-peripherals-generic = { path = "../../peripherals/generic" }
moa-peripherals-motorola = { path = "../../peripherals/motorola" }