2018-11-13 12:47:52 -07:00
|
|
|
[package]
|
|
|
|
name = "gba"
|
|
|
|
description = "A crate (and book) for making GBA games with Rust."
|
2020-06-14 09:22:59 +02:00
|
|
|
version = "0.4.0-pre1"
|
2018-12-10 10:10:03 -07:00
|
|
|
authors = ["Lokathor <zefria@gmail.com>", "Thomas Winwood <twwinwood@gmail.com>"]
|
2018-11-13 12:47:52 -07:00
|
|
|
repository = "https://github.com/rust-console/gba"
|
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["gba"]
|
|
|
|
edition = "2018"
|
|
|
|
license = "Apache-2.0"
|
|
|
|
|
2019-02-04 20:25:40 -07:00
|
|
|
publish = false
|
2018-11-14 19:53:53 -07:00
|
|
|
|
2020-12-26 11:28:07 -07:00
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
serial = ["embedded-hal", "nb"]
|
|
|
|
|
2018-11-13 12:47:52 -07:00
|
|
|
[dependencies]
|
2018-12-17 17:00:22 -07:00
|
|
|
typenum = "1.10"
|
2019-02-04 20:25:40 -07:00
|
|
|
voladdress = "0.2"
|
2018-12-29 00:06:08 -07:00
|
|
|
gba-proc-macro = "0.5"
|
2020-12-26 11:28:07 -07:00
|
|
|
embedded-hal = { version = "0.2.4", optional = true }
|
|
|
|
nb = { version = "1.0.0", optional = true }
|
2018-11-13 12:47:52 -07:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
lto = true
|
|
|
|
panic = "abort"
|
2019-02-02 00:26:08 -07:00
|
|
|
incremental = false
|
|
|
|
codegen-units = 1
|
2020-12-26 11:28:07 -07:00
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "uart_echo"
|
|
|
|
required-features = ["serial"]
|