Derive Expr methods using a derive proc-macro. These macros are present in the `argus-derive` crate, but the traits are defined in `argus-core`
13 lines
199 B
TOML
13 lines
199 B
TOML
[package]
|
|
name = "argus-derive"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
proc-macro2 = "1.0.58"
|
|
quote = "1.0.27"
|
|
syn = { version = "2.0.16", features = ["full"] }
|
|
|