agb/agb-image-converter/Cargo.toml

18 lines
462 B
TOML
Raw Normal View History

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