[package] name = "gba" description = "A crate for making GBA games with Rust." version = "0.4.1-alpha.0" authors = ["Lokathor ", "Thomas Winwood "] 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 = []