agb/agb-image-converter/Cargo.toml
2023-04-25 21:51:29 +01:00

30 lines
629 B
TOML

[package]
name = "agb_image_converter"
version = "0.15.0"
authors = ["Gwilym Kuiper <gw@ilym.me>"]
edition = "2021"
license = "MPL-2.0"
description = "Library for converting graphics for use on the Game Boy Advance"
repository = "https://github.com/agbrs/agb"
[lib]
proc-macro = true
[dependencies]
image = { version = "0.23", default-features = false, features = [ "png", "bmp" ] }
syn = { version = "2", features = ["proc-macro", "parsing"] }
proc-macro2 = "1"
quote = "1"
asefile = "0.3.5"
fontdue = "0.7"
[profile.dev]
opt-level = 3
debug = true
[profile.release]
opt-level = 3
lto = "fat"
debug = true
codegen-units = 1