2018-11-14 06:47:52 +11:00
|
|
|
[package]
|
|
|
|
name = "gba"
|
2022-09-28 02:40:05 +10:00
|
|
|
description = "A crate for 'raw' style GBA development. If you want a 'managed' experience, try the `agb` crate instead."
|
2022-09-28 02:42:45 +10:00
|
|
|
repository = "https://github.com/rust-console/gba"
|
2023-02-12 18:43:58 +11:00
|
|
|
version = "0.10.1"
|
2022-09-28 02:40:05 +10:00
|
|
|
edition = "2021"
|
2021-03-02 02:36:39 +11:00
|
|
|
license = "Zlib OR Apache-2.0 OR MIT"
|
2018-11-14 06:47:52 +11:00
|
|
|
|
2022-10-25 07:38:38 +11:00
|
|
|
[features]
|
|
|
|
default = ["track_caller"]
|
|
|
|
track_caller = []
|
|
|
|
|
2018-11-14 06:47:52 +11:00
|
|
|
[dependencies]
|
2022-09-28 02:40:05 +10:00
|
|
|
bitfrob = "0.2.3"
|
2022-10-17 05:26:09 +11:00
|
|
|
voladdress = { version = "1.2.1", features = ["experimental_volregion"] }
|
2022-12-05 10:44:27 +11:00
|
|
|
bracer = "0.1.2"
|
2018-11-14 06:47:52 +11:00
|
|
|
|
2021-02-21 05:49:40 +11:00
|
|
|
[profile.dev]
|
2022-09-28 02:40:05 +10:00
|
|
|
opt-level = 3
|
2022-12-02 13:13:31 +11:00
|
|
|
incremental = false
|
|
|
|
|
|
|
|
[profile.dev.package."*"]
|
|
|
|
debug-assertions = false
|
2022-09-28 02:53:41 +10:00
|
|
|
|
2022-10-17 05:26:09 +11:00
|
|
|
[profile.release]
|
|
|
|
codegen-units = 1
|
2022-12-02 13:13:31 +11:00
|
|
|
incremental = false
|
2022-10-17 05:26:09 +11:00
|
|
|
|
2022-09-28 02:53:41 +10:00
|
|
|
[package.metadata.docs.rs]
|
2022-09-28 10:07:06 +10:00
|
|
|
# The crate can only be built for targets that have thumb-interworking support,
|
|
|
|
# because otherwise the instruction_set attribute can't be used.
|
2022-09-28 03:00:53 +10:00
|
|
|
targets = ["armv5te-unknown-linux-gnueabi"]
|