agb/agb-image-converter/Cargo.toml

30 lines
629 B
TOML
Raw Normal View History

2021-04-20 07:51:41 +10:00
[package]
name = "agb_image_converter"
2023-04-26 06:51:29 +10:00
version = "0.15.0"
2021-04-20 07:51:41 +10:00
authors = ["Gwilym Kuiper <gw@ilym.me>"]
2023-02-08 07:32:35 +11:00
edition = "2021"
license = "MPL-2.0"
description = "Library for converting graphics for use on the Game Boy Advance"
repository = "https://github.com/agbrs/agb"
2021-04-20 08:15:03 +10:00
[lib]
proc-macro = true
2021-04-20 08:15:03 +10:00
[dependencies]
2022-02-25 08:45:14 +11:00
image = { version = "0.23", default-features = false, features = [ "png", "bmp" ] }
2023-04-14 07:15:53 +10:00
syn = { version = "2", features = ["proc-macro", "parsing"] }
2022-03-15 07:34:02 +11:00
proc-macro2 = "1"
quote = "1"
2022-04-25 02:10:50 +10:00
asefile = "0.3.5"
2022-04-05 07:06:08 +10:00
fontdue = "0.7"
[profile.dev]
opt-level = 3
debug = true
[profile.release]
opt-level = 3
lto = "fat"
debug = true
2023-04-26 06:51:29 +10:00
codegen-units = 1