2021-04-20 07:51:41 +10:00
|
|
|
[package]
|
2021-04-20 09:58:03 +10:00
|
|
|
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"
|
2021-05-23 15:14:12 +10:00
|
|
|
license = "MPL-2.0"
|
|
|
|
description = "Library for converting graphics for use on the Game Boy Advance"
|
2021-04-20 08:15:03 +10:00
|
|
|
|
2021-07-22 07:07:09 +10:00
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
2021-04-20 08:15:03 +10:00
|
|
|
[dependencies]
|
2022-02-25 07:49:44 +11:00
|
|
|
image = { version = "0.24.1", default-features = false, features = [ "png", "bmp" ] }
|
2021-07-22 05:59:25 +10:00
|
|
|
toml = "0.5.8"
|
2021-07-22 07:07:09 +10:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2022-01-20 12:58:31 +11:00
|
|
|
syn = "1.0.86"
|
2022-01-02 08:02:51 +11:00
|
|
|
proc-macro2 = "1.0.36"
|
2022-02-16 08:28:21 +11:00
|
|
|
quote = "1.0.15"
|
|
|
|
serde_json = "1.0"
|