2018-11-13 12:47:52 -07:00
|
|
|
[package]
|
|
|
|
name = "gba"
|
2022-09-27 10:40:05 -06:00
|
|
|
description = "A crate for 'raw' style GBA development. If you want a 'managed' experience, try the `agb` crate instead."
|
2022-09-27 10:42:45 -06:00
|
|
|
repository = "https://github.com/rust-console/gba"
|
2022-11-02 14:15:05 -06:00
|
|
|
version = "0.10.0"
|
2022-09-27 10:40:05 -06:00
|
|
|
edition = "2021"
|
2021-03-01 08:36:39 -07:00
|
|
|
license = "Zlib OR Apache-2.0 OR MIT"
|
2018-11-13 12:47:52 -07:00
|
|
|
|
2022-10-24 14:38:38 -06:00
|
|
|
[features]
|
|
|
|
default = ["track_caller"]
|
|
|
|
track_caller = []
|
|
|
|
|
2018-11-13 12:47:52 -07:00
|
|
|
[dependencies]
|
2022-09-27 10:40:05 -06:00
|
|
|
bitfrob = "0.2.3"
|
2022-10-16 12:26:09 -06:00
|
|
|
voladdress = { version = "1.2.1", features = ["experimental_volregion"] }
|
2022-12-04 16:44:27 -07:00
|
|
|
bracer = "0.1.2"
|
2018-11-13 12:47:52 -07:00
|
|
|
|
2021-02-20 14:49:40 -04:00
|
|
|
[profile.dev]
|
2022-09-27 10:40:05 -06:00
|
|
|
opt-level = 3
|
2022-12-01 19:13:31 -07:00
|
|
|
incremental = false
|
|
|
|
|
|
|
|
[profile.dev.package."*"]
|
|
|
|
debug-assertions = false
|
2022-09-27 10:53:41 -06:00
|
|
|
|
2022-10-16 12:26:09 -06:00
|
|
|
[profile.release]
|
|
|
|
codegen-units = 1
|
2022-12-01 19:13:31 -07:00
|
|
|
incremental = false
|
2022-10-16 12:26:09 -06:00
|
|
|
|
2022-09-27 10:53:41 -06:00
|
|
|
[package.metadata.docs.rs]
|
2022-09-27 18:07:06 -06: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-27 11:00:53 -06:00
|
|
|
targets = ["armv5te-unknown-linux-gnueabi"]
|