agb/agb-sound-converter/Cargo.toml

28 lines
469 B
TOML
Raw Normal View History

[package]
name = "agb_sound_converter"
2023-04-26 06:51:29 +10:00
version = "0.15.0"
authors = ["Gwilym Kuiper <gw@ilym.me>"]
2023-02-08 07:32:35 +11:00
edition = "2021"
license = "MPL-2.0"
description = "Library for converting wavs for use on the Game Boy Advance"
repository = "https://github.com/agbrs/agb"
[lib]
proc-macro = true
[dependencies]
2022-09-16 06:32:21 +10:00
hound = "3.5"
2023-03-24 09:02:23 +11:00
syn = "2"
2022-03-15 07:34:02 +11:00
proc-macro2 = "1"
quote = "1"
[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