agb/agb-image-converter/Cargo.toml

23 lines
520 B
TOML
Raw Normal View History

2021-04-20 07:51:41 +10:00
[package]
name = "agb_image_converter"
2024-05-25 22:20:03 +10:00
version = "0.20.2"
authors = ["Gwilym Inzani <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]
2024-03-04 02:58:59 +11:00
image = { version = "0.24", 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"
2024-03-20 10:29:33 +11:00
asefile = "0.3.8"
2024-05-14 10:56:14 +10:00
fontdue = "0.9"