agb/agb/Cargo.toml

38 lines
965 B
TOML
Raw Normal View History

2021-03-07 04:58:59 +11:00
[package]
2021-04-16 06:58:02 +10:00
name = "agb"
2022-03-29 08:50:36 +11:00
version = "0.9.2"
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
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"]
2022-06-11 22:05:30 +10:00
freq32768 = ["agb_sound_converter/freq32768"]
2021-03-07 04:58:59 +11:00
[dependencies]
2022-03-15 07:34:02 +11:00
bitflags = "1"
2022-03-29 08:21:45 +11:00
agb_image_converter = { version = "0.7.0", path = "../agb-image-converter" }
2022-03-29 08:24:07 +11:00
agb_sound_converter = { version = "0.2.0", path = "../agb-sound-converter" }
2022-03-29 08:18:22 +11:00
agb_macros = { version = "0.2.0", path = "../agb-macros" }
2022-03-29 08:30:51 +11:00
agb_fixnum = { version = "0.2.1", 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 = []
2022-06-12 00:46:10 +10:00
[[example]]
name = "mixer_32768"
required-features = ["freq32768"]