- Rename `macros` crate to `libmarathon-macros` for better discoverability on crates.io - Update all imports from `macros::` to `libmarathon_macros::` - Add crates.io metadata (description, license, repository, homepage, etc.) - Bump version to 0.1.1 - Add version requirement for libmarathon-macros dependency Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
28 lines
673 B
TOML
28 lines
673 B
TOML
[package]
|
|
name = "libmarathon-macros"
|
|
version = "0.1.1"
|
|
edition.workspace = true
|
|
description = "Procedural macros for the Marathon game engine"
|
|
license = "MIT"
|
|
repository = "https://github.com/r3t-studios/marathon"
|
|
homepage = "https://github.com/r3t-studios/marathon"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
syn = { version = "2.0", features = ["full"] }
|
|
quote = "1.0"
|
|
proc-macro2 = "1.0"
|
|
inventory = { workspace = true }
|
|
bytes = "1.0"
|
|
bevy_macro_utils = "0.17.2"
|
|
|
|
[dev-dependencies]
|
|
libmarathon = { path = "../libmarathon" }
|
|
bevy = { workspace = true }
|
|
serde = { workspace = true }
|
|
rkyv = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
tracing = { workspace = true }
|