16 lines
412 B
TOML
16 lines
412 B
TOML
[package]
|
|
name = "mizan-macros"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Proc macros for mizan-core: #[derive(Mizan)], #[mizan::context], #[mizan(...)]. Emits MizanType / ContextMarker / FunctionSpec impls plus linkme registrations."
|
|
license = "Elastic-2.0"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
proc-macro2 = "1"
|
|
quote = "1"
|
|
syn = { version = "2", features = ["full", "extra-traits"] }
|
|
heck = "0.5"
|