2021-10-17 21:59:01 +01:00
|
|
|
[package]
|
|
|
|
name = "agb_sound_converter"
|
2023-04-11 21:28:22 +01:00
|
|
|
version = "0.14.0"
|
2021-10-17 21:59:01 +01:00
|
|
|
authors = ["Gwilym Kuiper <gw@ilym.me>"]
|
2023-02-07 20:32:35 +00:00
|
|
|
edition = "2021"
|
2021-10-17 21:59:01 +01:00
|
|
|
license = "MPL-2.0"
|
|
|
|
description = "Library for converting wavs for use on the Game Boy Advance"
|
2022-07-14 21:49:53 +01:00
|
|
|
repository = "https://github.com/agbrs/agb"
|
2021-10-17 21:59:01 +01:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
2022-09-15 20:32:21 +00:00
|
|
|
hound = "3.5"
|
2023-03-23 22:02:23 +00:00
|
|
|
syn = "2"
|
2022-03-14 20:34:02 +00:00
|
|
|
proc-macro2 = "1"
|
|
|
|
quote = "1"
|
2023-04-25 20:22:44 +01:00
|
|
|
|
|
|
|
[profile.dev]
|
|
|
|
opt-level = 3
|
|
|
|
debug = true
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
opt-level = 3
|
|
|
|
lto = "fat"
|
|
|
|
debug = true
|
|
|
|
codegen-units = 1
|