2022-09-24 23:14:03 -07:00
|
|
|
[package]
|
|
|
|
name = "moa_minifb"
|
|
|
|
version = "0.1.0"
|
2022-09-29 19:55:12 -07:00
|
|
|
edition = "2021"
|
2022-09-24 23:14:03 -07:00
|
|
|
default-run = "moa-genesis"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-10-09 09:40:20 -07:00
|
|
|
log = "0.4"
|
2022-09-24 23:14:03 -07:00
|
|
|
minifb = "0.19"
|
|
|
|
clap = "3.2.20"
|
2022-10-09 09:40:20 -07:00
|
|
|
simple_logger = "2.3.0"
|
|
|
|
|
|
|
|
moa_core = { path = "../../core" }
|
|
|
|
moa_common = { path = "../common", features = ["audio"] }
|
2022-09-24 23:14:03 -07:00
|
|
|
|
|
|
|
moa_genesis = { path = "../../systems/genesis" }
|
|
|
|
moa_computie = { path = "../../systems/computie" }
|
|
|
|
moa_trs80 = { path = "../../systems/trs80" }
|
|
|
|
moa_macintosh = { path = "../../systems/macintosh" }
|
|
|
|
moa_peripherals_yamaha = { path = "../../peripherals/yamaha" }
|
|
|
|
|