[package] name = "dustbox" version = "0.0.1" authors = [ "Martin Lindhe " ] edition = "2018" description = "PC x86 emulator with the goal of easily running MS-DOS games on Windows, macOS and Linux." license = "MIT" repository = "https://github.com/martinlindhe/dustbox-rs" exclude = [ "utils/*", ] [lib] path = "src/lib.rs" [dependencies] bincode = "1.1" chrono = "0.4" image = "0.21" sdl2 = "0.32" quick-error = "1.2" rand = "0.6" rand_xorshift = "0.1" serde = "1.0" serde_derive = "1.0" simple-error = "0.2" tempdir = "0.3" tera = "0.11" toml = "0.5" [dev-dependencies] criterion = "0.2" pretty_assertions = "0.6" [[bench]] name = "cpu" harness = false [workspace] members = [ "disassembler", "debugger", "frontend", "fuzzer" ]