[package]
edition = "2024"
name = "mos6502"
version = "0.10.1"
authors = ["The 6502-rs Developers"]
build = false
exclude = ["examples/**"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A MOS 6502 Emulator"
readme = "README.md"
license = "BSD-3-Clause"
[lib]
name = "mos6502"
path = "src/lib.rs"
[[test]]
name = "functional_test"
path = "tests/functional_test.rs"
[[test]]
name = "interrupt_test"
path = "tests/interrupt_test.rs"
[[test]]
name = "single_step_huc6280"
path = "tests/single_step_huc6280.rs"
[[test]]
name = "timing_test"
path = "tests/timing_test.rs"
[dependencies.bitflags]
version = "2.9.1"
[dependencies.log]
version = "0.4.27"
[dev-dependencies.serde]
version = "1"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1"