mirror of
https://github.com/transistorfet/moa.git
synced 2024-11-19 21:31:30 +00:00
083f3607ba
I wanted to make this a bit more modular, so it's easier in theory to write external crates that can reuse bits, and selectively compile in bits, such as adding new systems or new cpu implementations
14 lines
297 B
TOML
14 lines
297 B
TOML
[package]
|
|
name = "harte_tests"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
moa_core = { path = "../../emulator/core" }
|
|
moa_m68k = { path = "../../emulator/cpus/m68k" }
|
|
serde = "1.0"
|
|
serde_json = "1.0"
|
|
serde_derive = "1.0"
|
|
flate2 = "1.0"
|
|
clap = { version = "3.2.20", features = ["derive"] }
|