agb/agb-image-converter/Cargo.toml

20 lines
460 B
TOML
Raw Normal View History

2021-04-20 07:51:41 +10:00
[package]
name = "agb_image_converter"
2021-08-02 06:40:49 +10:00
version = "0.6.0"
2021-04-20 07:51:41 +10:00
authors = ["Gwilym Kuiper <gw@ilym.me>"]
edition = "2018"
license = "MPL-2.0"
description = "Library for converting graphics for use on the Game Boy Advance"
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" ] }
2022-03-15 07:28:11 +11:00
toml = "0.5"
2022-03-15 07:34:02 +11:00
serde = { version = "1", features = ["derive"] }
syn = "1"
proc-macro2 = "1"
quote = "1"
2022-03-22 06:51:58 +11:00
asefile = "0.3.4"