1
0
Fork 0
mirror of https://github.com/italicsjenga/agb.git synced 2025-02-23 22:58:18 +11:00
agb/agb/Cargo.toml

36 lines
928 B
TOML
Raw Normal View History

2021-03-06 17:58:59 +00:00
[package]
2021-04-15 21:58:02 +01:00
name = "agb"
2023-07-18 18:55:12 +01:00
version = "0.16.0"
authors = ["Corwin Kuiper <corwin@kuiper.dev>", "Gwilym Inzani <gw@ilym.me>"]
2022-12-09 20:36:09 +00:00
edition = "2021"
2021-04-15 22:02:25 +01:00
description = "Library for Game Boy Advance Development"
2021-04-15 22:04:53 +01:00
license = "MPL-2.0"
repository = "https://github.com/agbrs/agb"
2021-03-06 17:58:59 +00:00
2021-08-16 23:32:31 +01:00
[features]
2022-09-15 22:37:36 +01:00
default = ["testing"]
testing = []
2021-03-06 17:58:59 +00:00
[dependencies]
2023-03-23 22:28:28 +00:00
bitflags = "2"
2023-07-18 18:55:12 +01:00
agb_image_converter = { version = "0.16.0", path = "../agb-image-converter" }
agb_sound_converter = { version = "0.16.0", path = "../agb-sound-converter" }
agb_macros = { version = "0.16.0", path = "../agb-macros" }
agb_fixnum = { version = "0.16.0", path = "../agb-fixnum" }
agb_hashmap = { version = "0.16.0", path = "../agb-hashmap" }
2022-03-14 20:34:02 +00:00
bare-metal = "1"
2023-07-30 16:41:24 +00:00
bilge = "0.2"
rustc-hash = { version = "1", default-features = false }
2021-05-23 06:03:23 +01:00
[package.metadata.docs.rs]
2023-07-23 19:52:11 +01:00
default-target = "thumbv4t-none-eabi"
[profile.dev]
opt-level = 3
debug = true
[profile.release]
opt-level = 3
lto = "fat"
debug = true