mirror of
https://github.com/transistorfet/moa.git
synced 2024-11-04 15:06:13 +00:00
23 lines
671 B
TOML
23 lines
671 B
TOML
[package]
|
|
name = "moa-console"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
default-run = "moa-computie"
|
|
|
|
[dependencies]
|
|
log = "0.4"
|
|
clap = "=4.4"
|
|
simple_logger = "4"
|
|
femtos = "0.1"
|
|
|
|
moa-core = { path = "../../core" }
|
|
moa-host = { path = "../../libraries/host" }
|
|
moa-common = { path = "../common", features = ["tty"] }
|
|
|
|
moa-debugger = { path = "../../libraries/debugger" }
|
|
moa-systems-genesis = { path = "../../systems/genesis" }
|
|
moa-systems-computie = { path = "../../systems/computie" }
|
|
moa-m68k = { path = "../../cpus/m68k", features = ["moa"] }
|
|
moa-peripherals-generic = { path = "../../peripherals/generic" }
|
|
moa-peripherals-motorola = { path = "../../peripherals/motorola" }
|