agb/agb/Cargo.toml

42 lines
1.3 KiB
TOML
Raw Normal View History

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"
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"
repository = "https://github.com/agbrs/agb"
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"]
testing = []
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 }
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"
cargo-args = ["-Zbuild-std=core,alloc"]
[profile.dev]
opt-level = 3
debug = true
[profile.release]
opt-level = 3
lto = "fat"
debug = true