agb/tracker/agb-tracker/Cargo.toml

41 lines
1.1 KiB
TOML
Raw Normal View History

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