agb/tracker/agb-tracker/Cargo.toml

33 lines
885 B
TOML
Raw Normal View History

2023-07-12 21:10:05 +10:00
[package]
name = "agb_tracker"
2024-02-07 09:36:11 +11:00
version = "0.18.1"
2023-07-24 05:00:31 +10:00
authors = ["Gwilym Inzani <gw@ilym.me>"]
2023-07-12 21:10:05 +10:00
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]
2023-11-01 22:32:41 +11:00
default = ["xm", "midi"]
xm = ["dep:agb_xm"]
2023-11-01 22:32:41 +11:00
midi = ["dep:agb_midi"]
2023-07-12 21:10:05 +10:00
[dependencies]
2023-11-01 22:32:41 +11:00
agb_midi = { version = "0.18.1", path = "../agb-midi", optional = true }
2024-02-07 09:36:11 +11:00
agb_xm = { version = "0.18.1", path = "../agb-xm", optional = true }
agb = { version = "0.18.1", path = "../../agb" }
agb_tracker_interop = { version = "0.18.1", path = "../agb-tracker-interop", default-features = false }
[profile.dev]
opt-level = 3
debug = true
[profile.release]
opt-level = 3
lto = "fat"
debug = true
2023-07-24 04:52:11 +10:00
[package.metadata.docs.rs]
default-target = "thumbv4t-none-eabi"
cargo-args = ["-Zbuild-std=core,alloc"]