mirror of
https://github.com/italicsjenga/gba.git
synced 2024-12-23 10:51:30 +11:00
8385504db6
* message * finish memory function re-arrangement.
33 lines
827 B
TOML
33 lines
827 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.10.0"
|
|
edition = "2021"
|
|
license = "Zlib OR Apache-2.0 OR MIT"
|
|
|
|
[features]
|
|
default = ["track_caller"]
|
|
track_caller = []
|
|
|
|
[dependencies]
|
|
bitfrob = "0.2.3"
|
|
voladdress = { version = "1.2.1", features = ["experimental_volregion"] }
|
|
bracer = "0.1.2"
|
|
|
|
[profile.dev]
|
|
opt-level = 3
|
|
incremental = false
|
|
|
|
[profile.dev.package."*"]
|
|
debug-assertions = false
|
|
|
|
[profile.release]
|
|
codegen-units = 1
|
|
incremental = false
|
|
|
|
[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"]
|