summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 3793f4e8d9540f5083cca31b7c1c05e221ea891f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
[package]
name = "chip8"
version = "0.1.0"
edition = "2024"

[dependencies]
rustix = { version = "1.0.8", default-features = false, features = [ "runtime", "stdio" ] }

[profile.dev]
panic = "abort"

[profile.release]
lto = true
panic = "abort"