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.
14 lines
281 B
TOML
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"] }
|