mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-24 00:31:34 +11:00
29 lines
589 B
TOML
29 lines
589 B
TOML
[package]
|
|
name = "agb"
|
|
version = "0.7.0"
|
|
authors = ["Corwin Kuiper <corwin@kuiper.dev>", "Gwilym Kuiper <gw@ilym.me>"]
|
|
edition = "2018"
|
|
description = "Library for Game Boy Advance Development"
|
|
license = "MPL-2.0"
|
|
|
|
[profile.dev]
|
|
opt-level = 3
|
|
debug = true
|
|
|
|
[profile.release]
|
|
lto = true
|
|
debug = true
|
|
|
|
[features]
|
|
default = ["alloc"]
|
|
alloc = []
|
|
|
|
[dependencies]
|
|
bitflags = "1.2"
|
|
agb_image_converter = { version = "0.6.0", path = "../agb-image-converter" }
|
|
agb_macros = { version = "0.1.0", path = "../agb-macros" }
|
|
|
|
[package.metadata.docs.rs]
|
|
default-target = "thumbv6m-none-eabi"
|
|
targets = []
|