2021-04-19 22:51:41 +01:00
|
|
|
[package]
|
2021-04-20 00:58:03 +01:00
|
|
|
name = "agb_image_converter"
|
2021-08-01 21:40:49 +01:00
|
|
|
version = "0.6.0"
|
2021-04-19 22:51:41 +01:00
|
|
|
authors = ["Gwilym Kuiper <gw@ilym.me>"]
|
|
|
|
edition = "2018"
|
2021-05-23 06:14:12 +01:00
|
|
|
license = "MPL-2.0"
|
|
|
|
description = "Library for converting graphics for use on the Game Boy Advance"
|
2021-04-19 23:15:03 +01:00
|
|
|
|
2021-07-21 22:07:09 +01:00
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
2021-04-19 23:15:03 +01:00
|
|
|
[dependencies]
|
2021-06-05 18:11:00 +01:00
|
|
|
image = { version = "0.23.14", default-features = false, features = [ "png", "bmp" ] }
|
2021-07-21 20:59:25 +01:00
|
|
|
toml = "0.5.8"
|
2021-07-21 22:07:09 +01:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2021-07-22 19:03:49 +01:00
|
|
|
syn = "1.0.73"
|
|
|
|
proc-macro2 = "1.0.27"
|
|
|
|
quote = "1.0.9"
|