[package]
edition = "2024"
name = "rx82"
version = "0.1.0"
authors = ["John Arundel <john@bitfieldconsulting.com>"]
build = false
exclude = ["/.github/"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An emulator for the RX82 retro computer system."
homepage = "https://github.com/bitfield/rx82"
documentation = "https://docs.rs/rx82"
readme = "README.md"
keywords = [
"emulator",
"emulation",
"R8",
]
categories = ["emulators"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/bitfield/rx82"
[badges.github]
repository = "bitfield/rx82"
workflow = "CI"
[badges.maintenance]
status = "actively-developed"
[lib]
name = "rx82"
path = "src/lib.rs"
[[bin]]
name = "rx82"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0.102"
[dependencies.rand]
version = "0.10.1"
features = ["thread_rng"]
[lints.clippy]
blanket_clippy_restriction_lints = "allow"
implicit_return = "allow"
missing_docs_in_private_items = "allow"
print_stdout = "allow"
pub_use = "allow"
pub_with_shorthand = "allow"
question_mark_used = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.clippy.restriction]
level = "warn"
priority = -1
[profile.release]