emu/Cargo.toml

24 lines
634 B
TOML
Raw Normal View History

2022-10-09 12:14:49 -05:00
[package]
name = "m68k_emu"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2022-10-23 17:18:32 -05:00
anyhow = "1.0.66"
2022-10-09 12:14:49 -05:00
bitvec = "1.0.0"
derive-try-from-primitive = "1.0.0"
2022-10-22 18:54:47 -05:00
elf = "0.3.1"
2022-10-09 12:14:49 -05:00
human-repr = { version = "1.0.1", features = ["iec", "space"] }
2022-10-19 22:20:26 -05:00
indexmap = "1.9.1"
2022-10-09 12:14:49 -05:00
inventory = "0.3.1"
itertools = "0.10.5"
nullable-result = { version = "0.7.0", features=["try_trait"] }
parse_int = "0.6.0"
paste = "1.0.9"
reedline-repl-rs = { path = "reedline-repl-rs" }
serde = { version = "1.0.144", features = ["derive"] }
serde_yaml = "0.9.13"
2022-10-23 17:18:32 -05:00
thiserror = "1.0.37"