mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-24 00:31:34 +11:00
33 lines
885 B
TOML
33 lines
885 B
TOML
[package]
|
|
name = "agb_tracker"
|
|
version = "0.20.2"
|
|
authors = ["Gwilym Inzani <gw@ilym.me>"]
|
|
edition = "2021"
|
|
license = "MPL-2.0"
|
|
description = "Library for playing tracker music. Designed for use with the agb library for the Game Boy Advance."
|
|
repository = "https://github.com/agbrs/agb"
|
|
|
|
[features]
|
|
default = ["xm", "midi"]
|
|
xm = ["dep:agb_xm"]
|
|
midi = ["dep:agb_midi"]
|
|
|
|
[dependencies]
|
|
agb_midi = { version = "0.20.2", path = "../agb-midi", optional = true }
|
|
agb_xm = { version = "0.20.2", path = "../agb-xm", optional = true }
|
|
agb = { version = "0.20.2", path = "../../agb" }
|
|
agb_tracker_interop = { version = "0.20.2", path = "../agb-tracker-interop", default-features = false }
|
|
|
|
[profile.dev]
|
|
opt-level = 3
|
|
debug = true
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
lto = "fat"
|
|
debug = true
|
|
|
|
[package.metadata.docs.rs]
|
|
default-target = "thumbv4t-none-eabi"
|
|
cargo-args = ["-Zbuild-std=core,alloc"]
|