Files
byte-pusher-emu/Cargo.toml

21 lines
392 B
TOML
Raw Normal View History

2024-02-16 23:13:25 +05:30
[package]
name = "byte-pusher-emu"
2024-02-25 10:13:12 +05:30
version = "0.2.0"
2024-02-16 23:13:25 +05:30
edition = "2021"
2024-02-21 18:52:38 +05:30
license = "BSD-3"
authors = ["chrisvrose"]
2024-02-16 23:13:25 +05:30
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.5", features = ["derive"] }
log = "0.4.20"
2024-02-17 08:44:14 +05:30
simple_logger = "4.3"
2024-02-18 15:08:03 +05:30
byteorder = "1.5"
2024-02-21 10:19:05 +05:30
sdl2 = "0.36.0"
[profile.release]
2024-02-21 18:52:38 +05:30
strip = true
2024-02-21 19:26:33 +05:30
lto = true