2023-07-12 21:16:00 +10:00
|
|
|
[package]
|
|
|
|
name = "agb_tracker_interop"
|
2024-06-19 02:49:56 +10:00
|
|
|
version = "0.20.5"
|
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-06-19 02:49:56 +10:00
|
|
|
agb_fixnum = { version = "0.20.5", path = "../../agb-fixnum" }
|