agb/agb/Cargo.toml

43 lines
1.4 KiB
TOML
Raw Normal View History

2021-03-07 04:58:59 +11:00
[package]
2021-04-16 06:58:02 +10:00
name = "agb"
2024-09-25 05:38:33 +10:00
version = "0.21.0"
authors = ["Corwin Kuiper <corwin@kuiper.dev>", "Gwilym Inzani <gw@ilym.me>"]
2022-12-10 07:36:09 +11:00
edition = "2021"
2021-04-16 07:02:25 +10:00
description = "Library for Game Boy Advance Development"
2021-04-16 07:04:53 +10:00
license = "MPL-2.0"
repository = "https://github.com/agbrs/agb"
homepage = "https://agbrs.dev"
exclude = ["/tests", "/examples"]
2021-03-07 04:58:59 +11:00
2021-08-17 08:32:31 +10:00
[features]
2024-04-21 05:28:10 +10:00
default = ["backtrace", "testing"]
backtrace = ["testing", "dep:qrcodegen-no-heap"]
testing = []
multiboot = []
2021-03-07 04:58:59 +11:00
[dependencies]
2023-03-24 09:28:28 +11:00
bitflags = "2"
2024-09-25 05:38:33 +10:00
agb_image_converter = { version = "0.21.0", path = "../agb-image-converter" }
agb_sound_converter = { version = "0.21.0", path = "../agb-sound-converter" }
agb_macros = { version = "0.21.0", path = "../agb-macros" }
agb_fixnum = { version = "0.21.0", path = "../agb-fixnum" }
agb_hashmap = { version = "0.21.0", path = "../agb-hashmap", features = ["allocator_api"] }
2023-07-31 02:41:24 +10:00
bilge = "0.2"
2024-04-21 05:28:10 +10:00
qrcodegen-no-heap = { version = "1.8", optional = true }
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 15:03:23 +10:00
[package.metadata.docs.rs]
2023-07-24 04:52:11 +10:00
default-target = "thumbv4t-none-eabi"
cargo-args = ["-Zbuild-std=core,alloc"]
[profile.dev]
opt-level = 3
debug = true
[profile.release]
opt-level = 3
lto = "fat"
debug = true