19 lines
316 B
TOML
19 lines
316 B
TOML
[package]
|
|
name = "arbiter-macros"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
proc-macro2 = "1.0"
|
|
quote = "1.0"
|
|
syn = { version = "2.0", features = ["derive", "fold", "full", "visit-mut"] }
|
|
|
|
[dev-dependencies]
|
|
arbiter-crypto = { path = "../arbiter-crypto" }
|
|
|
|
[lints]
|
|
workspace = true
|