2021-03-06 17:58:59 +00:00
|
|
|
[package]
|
2021-04-15 21:58:02 +01:00
|
|
|
name = "agb"
|
2024-06-12 17:57:39 +01:00
|
|
|
version = "0.20.3"
|
2023-07-26 10:27:49 +01:00
|
|
|
authors = ["Corwin Kuiper <corwin@kuiper.dev>", "Gwilym Inzani <gw@ilym.me>"]
|
2022-12-09 20:36:09 +00:00
|
|
|
edition = "2021"
|
2021-04-15 22:02:25 +01:00
|
|
|
description = "Library for Game Boy Advance Development"
|
2021-04-15 22:04:53 +01:00
|
|
|
license = "MPL-2.0"
|
2022-07-14 21:49:53 +01:00
|
|
|
repository = "https://github.com/agbrs/agb"
|
2024-05-21 23:43:45 +01:00
|
|
|
homepage = "https://agbrs.dev"
|
2021-03-06 17:58:59 +00:00
|
|
|
|
2021-08-16 23:32:31 +01:00
|
|
|
[features]
|
2024-04-20 20:28:10 +01:00
|
|
|
default = ["backtrace", "testing"]
|
|
|
|
backtrace = ["testing", "dep:qrcodegen-no-heap"]
|
2022-06-25 22:09:57 +01:00
|
|
|
testing = []
|
2023-10-18 09:50:18 +01:00
|
|
|
multiboot = []
|
2021-03-06 17:58:59 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2023-03-23 22:28:28 +00:00
|
|
|
bitflags = "2"
|
2024-06-12 17:57:39 +01:00
|
|
|
agb_image_converter = { version = "0.20.3", path = "../agb-image-converter" }
|
|
|
|
agb_sound_converter = { version = "0.20.3", path = "../agb-sound-converter" }
|
|
|
|
agb_macros = { version = "0.20.3", path = "../agb-macros" }
|
|
|
|
agb_fixnum = { version = "0.20.3", path = "../agb-fixnum" }
|
|
|
|
agb_hashmap = { version = "0.20.3", path = "../agb-hashmap", features = ["allocator_api"] }
|
2023-07-30 16:41:24 +00:00
|
|
|
bilge = "0.2"
|
2024-04-20 20:28:10 +01:00
|
|
|
qrcodegen-no-heap = { version = "1.8", optional = true }
|
2024-02-17 02:34:39 +00:00
|
|
|
portable-atomic = { version = "1.6.0", default-features = false, features = ["unsafe-assume-single-core"] }
|
|
|
|
once_cell = { version = "1.19.0", default-features = false, features = ["critical-section"] }
|
|
|
|
critical-section = { version = "1.1.2", features = ["restore-state-u16"] }
|
2021-05-23 06:03:23 +01:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
2023-07-23 19:52:11 +01:00
|
|
|
default-target = "thumbv4t-none-eabi"
|
2023-10-04 16:36:46 +01:00
|
|
|
cargo-args = ["-Zbuild-std=core,alloc"]
|
2023-04-25 20:22:44 +01:00
|
|
|
|
|
|
|
[profile.dev]
|
|
|
|
opt-level = 3
|
|
|
|
debug = true
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
opt-level = 3
|
|
|
|
lto = "fat"
|
|
|
|
debug = true
|