2021-04-20 07:51:41 +10:00
|
|
|
[package]
|
2021-04-20 09:58:03 +10:00
|
|
|
name = "agb_image_converter"
|
2023-01-20 07:21:09 +11:00
|
|
|
version = "0.13.0"
|
2021-04-20 07:51:41 +10:00
|
|
|
authors = ["Gwilym Kuiper <gw@ilym.me>"]
|
2023-02-08 07:32:35 +11:00
|
|
|
edition = "2021"
|
2021-05-23 15:14:12 +10:00
|
|
|
license = "MPL-2.0"
|
|
|
|
description = "Library for converting graphics for use on the Game Boy Advance"
|
2022-07-15 06:49:53 +10:00
|
|
|
repository = "https://github.com/agbrs/agb"
|
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 08:45:14 +11:00
|
|
|
image = { version = "0.23", default-features = false, features = [ "png", "bmp" ] }
|
2023-03-24 10:12:15 +11:00
|
|
|
toml = "0.7"
|
2022-03-15 07:34:02 +11:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
2023-03-24 09:02:23 +11:00
|
|
|
syn = { version = "2", features = ["full"] }
|
2022-03-15 07:34:02 +11:00
|
|
|
proc-macro2 = "1"
|
|
|
|
quote = "1"
|
2022-04-25 02:10:50 +10:00
|
|
|
asefile = "0.3.5"
|
2022-04-05 07:06:08 +10:00
|
|
|
fontdue = "0.7"
|