mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-24 00:31:34 +11:00
40 lines
1 KiB
TOML
40 lines
1 KiB
TOML
[package]
|
|
name = "agb"
|
|
version = "0.11.1"
|
|
authors = ["Corwin Kuiper <corwin@kuiper.dev>", "Gwilym Kuiper <gw@ilym.me>"]
|
|
edition = "2018"
|
|
description = "Library for Game Boy Advance Development"
|
|
license = "MPL-2.0"
|
|
repository = "https://github.com/agbrs/agb"
|
|
|
|
[profile.dev]
|
|
opt-level = 3
|
|
debug = true
|
|
|
|
[profile.release]
|
|
lto = true
|
|
debug = true
|
|
|
|
[features]
|
|
default = ["testing"]
|
|
freq18157 = ["agb_sound_converter/freq18157"]
|
|
freq32768 = ["agb_sound_converter/freq32768"]
|
|
testing = []
|
|
|
|
[dependencies]
|
|
bitflags = "1"
|
|
agb_image_converter = { version = "0.11.1", path = "../agb-image-converter" }
|
|
agb_sound_converter = { version = "0.11.1", path = "../agb-sound-converter" }
|
|
agb_macros = { version = "0.11.1", path = "../agb-macros" }
|
|
agb_fixnum = { version = "0.11.1", path = "../agb-fixnum" }
|
|
bare-metal = "1"
|
|
modular-bitfield = "0.11"
|
|
rustc-hash = { version = "1", default-features = false }
|
|
|
|
[package.metadata.docs.rs]
|
|
default-target = "thumbv6m-none-eabi"
|
|
targets = []
|
|
|
|
[[example]]
|
|
name = "mixer_32768"
|
|
required-features = ["freq32768"] |