gba/Cargo.toml
2021-04-19 11:21:06 -06:00

36 lines
761 B
TOML

[package]
name = "gba"
description = "A crate for making GBA games with Rust."
version = "0.4.0"
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 = "Zlib OR Apache-2.0 OR MIT"
publish = false
[features]
default = ["serial"]
serial = ["embedded-hal", "nb"]
[dependencies]
voladdress = { version = "0.4" }
embedded-hal = { version = "0.2.4", optional = true }
nb = { version = "1", optional = true }
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"
#[[example]]
#name = "uart_echo"
#required-features = ["serial"]
[package.metadata.docs.rs]
default-target = "thumbv6m-none-eabi"
targets = []