2021-03-07 04:58:59 +11:00
|
|
|
[package]
|
2021-04-16 06:58:02 +10:00
|
|
|
name = "agb"
|
2021-10-29 08:28:45 +11:00
|
|
|
version = "0.8.0"
|
2021-07-22 04:36:24 +10:00
|
|
|
authors = ["Corwin Kuiper <corwin@kuiper.dev>", "Gwilym Kuiper <gw@ilym.me>"]
|
2021-03-07 04:58:59 +11:00
|
|
|
edition = "2018"
|
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"
|
2021-03-07 04:58:59 +11:00
|
|
|
|
|
|
|
[profile.dev]
|
2021-07-04 07:19:02 +10:00
|
|
|
opt-level = 3
|
2021-05-20 16:18:54 +10:00
|
|
|
debug = true
|
2021-03-07 04:58:59 +11:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
lto = true
|
2021-07-30 02:48:13 +10:00
|
|
|
debug = true
|
2021-03-07 04:58:59 +11:00
|
|
|
|
2021-08-17 08:32:31 +10:00
|
|
|
[features]
|
2022-02-24 07:58:48 +11:00
|
|
|
default = []
|
2021-10-30 01:50:48 +11:00
|
|
|
freq18157 = ["agb_sound_converter/freq18157"]
|
2021-03-07 04:58:59 +11:00
|
|
|
|
|
|
|
[dependencies]
|
2022-03-15 07:34:02 +11:00
|
|
|
bitflags = "1"
|
2021-08-02 06:45:15 +10:00
|
|
|
agb_image_converter = { version = "0.6.0", path = "../agb-image-converter" }
|
2021-10-18 08:38:19 +11:00
|
|
|
agb_sound_converter = { version = "0.1.0", path = "../agb-sound-converter" }
|
2022-03-29 08:18:22 +11:00
|
|
|
agb_macros = { version = "0.2.0", path = "../agb-macros" }
|
2022-01-08 03:59:19 +11:00
|
|
|
agb_fixnum = { version = "0.1.0", path = "../agb-fixnum" }
|
2022-03-15 07:34:02 +11:00
|
|
|
bare-metal = "1"
|
|
|
|
modular-bitfield = "0.11"
|
|
|
|
rustc-hash = { version = "1", default-features = false }
|
2021-05-23 15:03:23 +10:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
default-target = "thumbv6m-none-eabi"
|
|
|
|
targets = []
|