gba/Cargo.toml

34 lines
720 B
TOML
Raw Normal View History

[package]
name = "gba"
description = "A crate (and book) for making GBA games with Rust."
version = "0.4.0-pre1"
2018-12-11 04:10:03 +11: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"
2019-02-05 14:25:40 +11:00
publish = false
2018-11-15 13:53:53 +11:00
[features]
default = []
serial = ["embedded-hal", "nb"]
[dependencies]
2018-12-18 11:00:22 +11:00
typenum = "1.10"
2019-02-05 14:25:40 +11:00
voladdress = "0.2"
gba-proc-macro = "0.5"
embedded-hal = { version = "0.2.4", optional = true }
nb = { version = "1.0.0", optional = true }
[profile.release]
lto = true
panic = "abort"
incremental = false
codegen-units = 1
[[example]]
name = "uart_echo"
required-features = ["serial"]