# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "gabbro" version = "0.2.0" authors = ["Lars de Jong "] description = "A Game Boy emulator written in Rust" readme = "README.md" keywords = [ "gameboy", "emulator", ] categories = ["emulators"] license = "GPL-3.0-or-later" repository = "https://github.com/itsmelmw/gabbro" [[bin]] name = "gabbro" path = "src/bin/gabbro/main.rs" required-features = ["sdl2"] [[bin]] name = "gabbro-db" path = "src/bin/gabbro-db/main.rs" required-features = ["debug"] [dependencies.crossterm] version = "0.25" optional = true [dependencies.env_logger] version = "0.10.0" optional = true [dependencies.log] version = "0.4.17" features = [ "max_level_trace", "release_max_level_info", ] [dependencies.sdl2] version = "0.35.2" features = ["bundled"] optional = true [dependencies.tui] version = "0.19" optional = true [features] debug = [ "dep:tui", "dep:crossterm", ] default = ["logger"] logger = ["dep:env_logger"] sdl2 = ["dep:sdl2"]