agb/agb-gbafix/Cargo.toml

26 lines
440 B
TOML
Raw Normal View History

2023-04-07 06:09:44 +10:00
[package]
name = "agb-gbafix"
2023-04-26 06:51:29 +10:00
version = "0.15.0"
2023-04-07 06:09:44 +10:00
edition = "2021"
2023-04-10 03:40:33 +10: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-07 06:09:44 +10:00
[dependencies]
2023-04-07 06:54:26 +10:00
elf = "0.7"
gbafix = "1"
2023-04-07 08:16:38 +10:00
bytemuck = "1"
2023-04-07 08:43:57 +10:00
anyhow = "1"
2023-04-12 06:28:22 +10:00
clap = "4"
[profile.dev]
opt-level = 3
debug = true
[profile.release]
opt-level = 3
lto = "fat"
debug = true
2023-04-26 06:51:29 +10:00
codegen-units = 1