mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-23 08:11:33 +11:00
Need an interop crate too
This commit is contained in:
parent
7e4a2f2e20
commit
d903aa164b
14
agb-tracker-interop/Cargo.toml
Normal file
14
agb-tracker-interop/Cargo.toml
Normal 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"
|
1
agb-tracker-interop/src/lib.rs
Normal file
1
agb-tracker-interop/src/lib.rs
Normal file
|
@ -0,0 +1 @@
|
|||
#![cfg_attr(not(feature(quote)), no_std)]
|
|
@ -8,4 +8,5 @@ repository = "https://github.com/agbrs/agb"
|
|||
|
||||
[dependencies]
|
||||
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 }
|
Loading…
Reference in a new issue