agb/tracker/agb-tracker-interop/Cargo.toml

19 lines
580 B
TOML
Raw Normal View History

2023-07-12 21:16:00 +10:00
[package]
name = "agb_tracker_interop"
2024-05-15 07:57:40 +10:00
version = "0.20.0"
2023-07-24 05:00:31 +10:00
authors = ["Gwilym Inzani <gw@ilym.me>"]
2023-07-12 21:16:00 +10:00
edition = "2021"
license = "MPL-2.0"
description = "Library for interop between tracker plugins and agb itself. Designed for use with the agb library for the Game Boy Advance."
repository = "https://github.com/agbrs/agb"
[features]
default = ["quote"]
2023-07-13 00:38:09 +10:00
quote = ["dep:quote", "dep:proc-macro2", "std"]
2023-07-12 21:18:02 +10:00
std = []
2023-07-12 21:16:00 +10:00
[dependencies]
2023-07-13 00:38:09 +10:00
quote = { version = "1", optional = true }
proc-macro2 = { version = "1", optional = true }
2024-05-15 07:57:40 +10:00
agb_fixnum = { version = "0.20.0", path = "../../agb-fixnum" }