gba/Cargo.toml

25 lines
493 B
TOML
Raw Normal View History

[package]
name = "gba"
description = "A crate (and book) for making GBA games with Rust."
2018-12-10 01:48:06 -07:00
version = "0.3.0-pre"
2018-12-10 10:10:03 -07:00
authors = ["Lokathor <zefria@gmail.com>", "Thomas Winwood <twwinwood@gmail.com>"]
repository = "https://github.com/rust-console/gba"
readme = "README.md"
keywords = ["gba"]
edition = "2018"
license = "Apache-2.0"
2018-11-14 19:53:53 -07:00
publish = false
[dependencies]
2018-12-17 17:00:22 -07:00
typenum = "1.10"
2018-12-25 23:19:16 -07:00
gba-proc-macro = "0.4"
#[dev-dependencies]
#quickcheck="0.7"
# TODO: F
[profile.release]
lto = true
panic = "abort"