2025-11-15 23:42:12 +00:00
|
|
|
[package]
|
2026-02-06 20:33:03 +00:00
|
|
|
name = "libmarathon-macros"
|
|
|
|
|
version = "0.1.1"
|
2025-11-15 23:42:12 +00:00
|
|
|
edition.workspace = true
|
2026-02-06 20:33:03 +00:00
|
|
|
description = "Procedural macros for the Marathon game engine"
|
|
|
|
|
license = "MIT"
|
|
|
|
|
repository = "https://github.com/r3t-studios/marathon"
|
|
|
|
|
homepage = "https://github.com/r3t-studios/marathon"
|
2025-11-15 23:42:12 +00:00
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
syn = { version = "2.0", features = ["full"] }
|
|
|
|
|
quote = "1.0"
|
|
|
|
|
proc-macro2 = "1.0"
|
2025-12-17 19:20:34 +00:00
|
|
|
inventory = { workspace = true }
|
2026-02-06 20:17:34 +00:00
|
|
|
bytes = "1.11"
|
2025-12-23 23:50:49 +00:00
|
|
|
bevy_macro_utils = "0.17.2"
|
2025-11-15 23:42:12 +00:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2025-12-13 22:22:05 +00:00
|
|
|
libmarathon = { path = "../libmarathon" }
|
2025-12-04 19:49:48 +00:00
|
|
|
bevy = { workspace = true }
|
|
|
|
|
serde = { workspace = true }
|
2025-12-17 19:20:34 +00:00
|
|
|
rkyv = { workspace = true }
|
2025-12-04 19:49:48 +00:00
|
|
|
anyhow = { workspace = true }
|
|
|
|
|
tracing = { workspace = true }
|