Need an interop crate too

This commit is contained in:
Gwilym Inzani 2023-07-12 12:16:00 +01:00
parent 7e4a2f2e20
commit d903aa164b
3 changed files with 17 additions and 1 deletions

View file

@ -0,0 +1,14 @@
[package]
name = "agb_tracker_interop"
version = "0.15.0"
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"]
quote = ["dep:quote"]
[dependencies]
quote = "1"

View file

@ -0,0 +1 @@
#![cfg_attr(not(feature(quote)), no_std)]

View file

@ -8,4 +8,5 @@ repository = "https://github.com/agbrs/agb"
[dependencies] [dependencies]
agb_xm = { version = "0.15.0", path = "../agb-xm" } agb_xm = { version = "0.15.0", path = "../agb-xm" }
agb = { version = "0.15.0", path = "../agb" } agb = { version = "0.15.0", path = "../agb" }
agb_tracker_interop = { version = "0.15.0", path = "../agb-tracker-interop", default-features = false }