2018-11-14 06:47:52 +11:00
|
|
|
[package]
|
|
|
|
name = "gba"
|
2021-04-06 10:11:42 +10:00
|
|
|
description = "A crate for making GBA games with Rust."
|
2021-04-09 16:13:58 +10:00
|
|
|
version = "0.4.1-alpha.0"
|
2018-12-11 04:10:03 +11:00
|
|
|
authors = ["Lokathor <zefria@gmail.com>", "Thomas Winwood <twwinwood@gmail.com>"]
|
2018-11-14 06:47:52 +11:00
|
|
|
repository = "https://github.com/rust-console/gba"
|
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["gba"]
|
|
|
|
edition = "2018"
|
2021-03-02 02:36:39 +11:00
|
|
|
license = "Zlib OR Apache-2.0 OR MIT"
|
2018-11-14 06:47:52 +11:00
|
|
|
|
2019-02-05 14:25:40 +11:00
|
|
|
publish = false
|
2018-11-15 13:53:53 +11:00
|
|
|
|
2020-12-27 05:28:07 +11:00
|
|
|
[features]
|
2021-04-09 15:57:30 +10:00
|
|
|
default = ["serial"]
|
2020-12-27 05:28:07 +11:00
|
|
|
serial = ["embedded-hal", "nb"]
|
|
|
|
|
2018-11-14 06:47:52 +11:00
|
|
|
[dependencies]
|
2021-04-01 13:53:47 +11:00
|
|
|
voladdress = { version = "0.4" }
|
2020-12-27 05:28:07 +11:00
|
|
|
embedded-hal = { version = "0.2.4", optional = true }
|
2021-04-09 15:57:30 +10:00
|
|
|
nb = { version = "1", optional = true }
|
2018-11-14 06:47:52 +11:00
|
|
|
|
2021-02-21 05:49:40 +11:00
|
|
|
[profile.dev]
|
|
|
|
panic = "abort"
|
|
|
|
|
2018-11-14 06:47:52 +11:00
|
|
|
[profile.release]
|
|
|
|
panic = "abort"
|
2020-12-27 05:28:07 +11:00
|
|
|
|
2021-04-09 15:57:30 +10:00
|
|
|
#[[example]]
|
|
|
|
#name = "uart_echo"
|
|
|
|
#required-features = ["serial"]
|
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
default-target = "thumbv6m-none-eabi"
|
|
|
|
targets = []
|