2023-11-01 22:32:41 +11:00
|
|
|
[package]
|
|
|
|
name = "agb_midi"
|
2024-06-19 02:49:56 +10:00
|
|
|
version = "0.20.5"
|
2023-11-01 22:32:41 +11:00
|
|
|
authors = ["Gwilym Inzani <gw@ilym.me>"]
|
|
|
|
edition = "2021"
|
|
|
|
license = "MPL-2.0"
|
|
|
|
description = "Library for converting MIDI files for use with agb-tracker on the Game Boy Advance. You shouldn't use this package directly"
|
|
|
|
repository = "https://github.com/agbrs/agb"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
2024-06-06 02:15:55 +10:00
|
|
|
agb_tracker_interop = { version = "0.20.5", path = "../agb-tracker-interop", features = ["quote"] }
|
2024-06-19 02:49:56 +10:00
|
|
|
agb_midi_core = { version = "0.20.5", path = "../agb-midi-core" }
|
2024-06-06 02:15:55 +10:00
|
|
|
|
2023-11-01 22:32:41 +11:00
|
|
|
proc-macro-error = "1"
|
|
|
|
proc-macro2 = "1"
|
2024-06-06 02:14:39 +10:00
|
|
|
quote = "1"
|
|
|
|
syn = "2"
|
2024-06-06 02:15:55 +10:00
|
|
|
|
2024-06-06 02:14:39 +10:00
|
|
|
rustysynth = "1.3"
|
|
|
|
midly = { version = "0.5", default-features = false, features = [
|
|
|
|
"alloc",
|
|
|
|
"std",
|
|
|
|
] }
|