agb/agb-macros/Cargo.toml

27 lines
506 B
TOML
Raw Normal View History

2021-08-08 01:24:19 +10:00
[package]
name = "agb_macros"
2023-04-26 06:51:29 +10:00
version = "0.15.0"
2021-08-08 01:24:19 +10:00
authors = ["Gwilym Kuiper <gw@ilym.me>"]
2023-02-08 07:32:35 +11:00
edition = "2021"
2021-08-08 01:24:19 +10:00
license = "MPL-2.0"
2021-08-08 01:40:09 +10:00
description = "Macro for declaring the entry point for a game using the agb library"
repository = "https://github.com/agbrs/agb"
2021-08-08 01:24:19 +10:00
[lib]
proc-macro = true
[dependencies]
2023-03-24 09:02:23 +11:00
syn = { version = "2", features = ["full", "extra-traits"] }
2022-03-15 07:34:02 +11:00
proc-macro2 = "1"
quote = "1"
[profile.dev]
opt-level = 3
debug = true
[profile.release]
opt-level = 3
lto = "fat"
debug = true
2023-04-26 06:51:29 +10:00
codegen-units = 1