gba/Cargo.toml

36 lines
798 B
TOML
Raw Normal View History

[package]
name = "gba"
description = "A crate for making GBA games with Rust."
version = "0.5.3"
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 = "Zlib OR Apache-2.0 OR MIT"
[features]
2021-05-02 10:38:52 +10:00
default = []
serial = ["embedded-hal", "nb"]
[dependencies]
2021-04-01 13:53:47 +11:00
voladdress = { version = "0.4" }
2021-05-02 10:38:52 +10:00
#
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 = "thumbv4t-none-eabi"
cargo-args = ["-Z", "build-std=core"]
2021-11-22 07:04:45 +11:00
rustdoc-args = ["--cfg","docs_rs"]