gba/Cargo.toml

18 lines
380 B
TOML
Raw Normal View History

2018-11-08 15:21:17 +11:00
[package]
name = "gba"
description = "A crate (and book) for making GBA games with Rust."
version = "0.1.0"
2018-11-08 15:21:17 +11:00
authors = ["Lokathor <zefria@gmail.com>", "Ketsuban"]
repository = "https://github.com/rust-console/gba"
readme = "README.md"
keywords = ["gba"]
2018-11-08 15:21:17 +11:00
edition = "2018"
2018-11-09 16:08:13 +11:00
license = "Apache-2.0"
2018-11-08 15:21:17 +11:00
[dependencies]
2018-11-10 20:03:37 +11:00
gba-proc-macro = "0.1.1"
2018-11-08 15:21:17 +11:00
[profile.release]
lto = true
panic = "abort"