agb/agb-gbafix/Cargo.toml

23 lines
394 B
TOML
Raw Normal View History

2023-04-06 21:09:44 +01:00
[package]
name = "agb-gbafix"
2024-02-06 22:36:11 +00:00
version = "0.18.1"
2023-04-06 21:09:44 +01:00
edition = "2021"
2023-04-09 18:40:33 +01:00
authors = ["Gwilym Inzani <email@gwilym.dev>"]
2023-07-28 21:54:36 +01:00
license = "MPL-2.0"
2023-04-09 18:40:33 +01:00
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"
2023-04-06 23:43:57 +01:00
anyhow = "1"
2023-04-11 21:28:22 +01:00
clap = "4"
[profile.dev]
opt-level = 3
debug = true
[profile.release]
opt-level = 3
lto = "fat"
debug = true