22 lines
437 B
TOML
22 lines
437 B
TOML
[package]
|
|
name = "sync-macros"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
syn = { version = "2.0", features = ["full"] }
|
|
quote = "1.0"
|
|
proc-macro2 = "1.0"
|
|
inventory = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
libmarathon = { path = "../libmarathon" }
|
|
bevy = { workspace = true }
|
|
serde = { workspace = true }
|
|
rkyv = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
tracing = { workspace = true }
|