gba/Cargo.toml
2022-10-24 10:22:38 -06:00

23 lines
660 B
TOML

[package]
name = "gba"
description = "A crate for 'raw' style GBA development. If you want a 'managed' experience, try the `agb` crate instead."
repository = "https://github.com/rust-console/gba"
version = "0.9.2"
edition = "2021"
license = "Zlib OR Apache-2.0 OR MIT"
[dependencies]
bitfrob = "0.2.3"
voladdress = { version = "1.2.1", features = ["experimental_volregion"] }
[profile.dev]
opt-level = 3
[profile.release]
codegen-units = 1
[package.metadata.docs.rs]
# The crate can only be built for targets that have thumb-interworking support,
# because otherwise the instruction_set attribute can't be used.
targets = ["armv5te-unknown-linux-gnueabi"]