mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-23 16:21:33 +11:00
35 lines
877 B
TOML
35 lines
877 B
TOML
[package]
|
|
name = "agb"
|
|
version = "0.12.2"
|
|
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"]
|
|
testing = []
|
|
|
|
[dependencies]
|
|
bitflags = "1"
|
|
agb_image_converter = { version = "0.12.2", path = "../agb-image-converter" }
|
|
agb_sound_converter = { version = "0.12.2", path = "../agb-sound-converter" }
|
|
agb_macros = { version = "0.12.2", path = "../agb-macros" }
|
|
agb_fixnum = { version = "0.12.2", 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 = []
|