Files
anyrun/anyrun-plugin-macros/Cargo.toml
Kirottu 8e5bff9e91 Switched to using proc macros for the anyrun_plugin crate
This allows for plugins to decide on whether or not a mutable borrow or
a normal borrow is needed of the shared data. It can also now be omitted
alltogether.
2023-05-01 11:15:02 +03:00

14 lines
281 B
TOML

[package]
name = "anyrun-plugin-macros"
version = "0.1.0"
edition = "2021"
[lib]
proc-macro = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
quote = "1.0.26"
syn = { version = "2.0.15", features = ["full"] }