2021-10-18 07:59:01 +11:00
|
|
|
[package]
|
|
|
|
name = "agb_sound_converter"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Gwilym Kuiper <gw@ilym.me>"]
|
|
|
|
edition = "2018"
|
|
|
|
license = "MPL-2.0"
|
|
|
|
description = "Library for converting wavs for use on the Game Boy Advance"
|
|
|
|
|
2021-10-18 09:22:36 +11:00
|
|
|
[profile.dev]
|
|
|
|
opt-level = 3
|
|
|
|
debug = true
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
lto = true
|
|
|
|
debug = true
|
|
|
|
|
2021-10-18 07:59:01 +11:00
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
2021-10-30 01:50:48 +11:00
|
|
|
[features]
|
|
|
|
freq18157 = []
|
|
|
|
|
2021-10-18 07:59:01 +11:00
|
|
|
[dependencies]
|
|
|
|
hound = "3.4.0"
|
2022-01-20 12:58:31 +11:00
|
|
|
syn = "1.0.86"
|
2022-01-02 08:02:51 +11:00
|
|
|
proc-macro2 = "1.0.36"
|
2022-01-22 12:56:33 +11:00
|
|
|
quote = "1.0.15"
|