rbgb 0.2.1

A basic and rough gameboy emulator
Documentation
# 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 = "2024"
name = "rbgb"
version = "0.2.1"
authors = ["Noah Graf <noah@grafhome.net>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A basic and rough gameboy emulator"
readme = "README.md"
keywords = [
    "gamedev",
    "graphics",
    "emulator",
]
license = "MIT"
repository = "https://github.com/ngraf3255/RbGB"

[features]
default = [
    "std",
    "gui",
]
gui = [
    "std",
    "sdl2",
]
std = []

[lib]
name = "rbgb"
path = "src/lib.rs"

[[bin]]
name = "rbgb"
path = "src/main.rs"
required-features = ["gui"]

[dependencies.sdl2]
version = "0.37.0"
optional = true

[dev-dependencies.ntest]
version = "0.9.3"

[target."cfg(windows)".dependencies.sdl2]
version = "0.37.0"
features = ["bundled"]
optional = true