agb/agb-image-converter/Cargo.toml

22 lines
556 B
TOML
Raw Normal View History

2021-04-19 22:51:41 +01:00
[package]
name = "agb_image_converter"
2022-07-31 17:08:48 +01:00
version = "0.10.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"
repository = "https://github.com/agbrs/agb"
2021-04-19 23:15:03 +01:00
[lib]
proc-macro = true
2021-04-19 23:15:03 +01:00
[dependencies]
2022-02-24 21:45:14 +00:00
image = { version = "0.23", default-features = false, features = [ "png", "bmp" ] }
2022-03-14 20:28:11 +00:00
toml = "0.5"
2022-03-14 20:34:02 +00:00
serde = { version = "1", features = ["derive"] }
2022-04-23 15:56:07 +01:00
syn = { version = "1", features = ["full"] }
2022-03-14 20:34:02 +00:00
proc-macro2 = "1"
quote = "1"
2022-04-24 16:10:50 +00:00
asefile = "0.3.5"
2022-04-04 22:06:08 +01:00
fontdue = "0.7"