2021-08-07 16:24:19 +01:00
|
|
|
[package]
|
2021-08-15 20:37:36 +01:00
|
|
|
name = "agb_macros"
|
2022-07-31 17:08:48 +01:00
|
|
|
version = "0.10.0"
|
2021-08-07 16:24:19 +01:00
|
|
|
authors = ["Gwilym Kuiper <gw@ilym.me>"]
|
|
|
|
edition = "2018"
|
|
|
|
license = "MPL-2.0"
|
2021-08-07 16:40:09 +01:00
|
|
|
description = "Macro for declaring the entry point for a game using the agb library"
|
2022-07-14 21:49:53 +01:00
|
|
|
repository = "https://github.com/agbrs/agb"
|
2021-08-07 16:24:19 +01:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
2022-03-14 20:34:02 +00:00
|
|
|
syn = { version = "1", features = ["full", "extra-traits"] }
|
|
|
|
proc-macro2 = "1"
|
|
|
|
quote = "1"
|