cge_nes 0.1.0

Cycle-accurate NES (Nintendo Entertainment System) emulator library: CPU, PPU, cartridge, input, and iNES ROM loading.
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 = "2021"
rust-version = "1.75"
name = "cge_nes"
version = "0.1.0"
build = false
exclude = [
    "/.idea",
    "/docs/*",
    "/test_assets/*",
    "header_info.txt",
    "nes_cpu_log.txt",
    "**/*.rs.bk",
    "Cargo.lock",
]
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Cycle-accurate NES (Nintendo Entertainment System) emulator library: CPU, PPU, cartridge, input, and iNES ROM loading."
homepage = "https://github.com/CasiussDev/cge_nes"
readme = "README.md"
keywords = [
    "nes",
    "emulator",
    "6502",
    "ppu",
]
categories = ["emulators"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/CasiussDev/cge_nes"

[features]
instr_log = ["cpu6502/logging"]
mapper_debug_log = []
oam_array_raw = []
show_name_table_change = []

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

[[bin]]
name = "ines_header_inspector"
path = "src/bin/ines_header_inspector.rs"

[[example]]
name = "run_frame"
path = "examples/run_frame.rs"

[dependencies.arrayvec]
version = "0.7.4"

[dependencies.bitflags]
version = "2.4"

[dependencies.cpu6502]
version = "0.1"

[dependencies.devices6502]
version = "0.1"

[dependencies.ringbuffer]
version = "0.15"

[profile.dev]
opt-level = 1

[profile.dev.package."*"]
opt-level = 3

[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1

[profile.test]
opt-level = 0