agb/agb-gbafix/Cargo.toml

15 lines
320 B
TOML
Raw Normal View History

2023-04-06 21:09:44 +01:00
[package]
name = "agb-gbafix"
version = "0.1.0"
edition = "2021"
2023-04-09 18:40:33 +01:00
authors = ["Gwilym Inzani <email@gwilym.dev>"]
license = "GPL-3.0"
description = "CLI utility to convert ELF file to valid GBA ROM"
repository = "https://github.com/agbrs/agb"
2023-04-06 21:09:44 +01:00
[dependencies]
2023-04-06 21:54:26 +01:00
elf = "0.7"
gbafix = "1"
2023-04-06 23:16:38 +01:00
bytemuck = "1"
2023-04-06 23:43:57 +01:00
anyhow = "1"
2023-04-08 21:18:56 +01:00
clap = "4"