mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
c95f57cafd
- Would be better to remove the iterator and just collect with a loop to avoid extra allocations - tructure - A HashSet is probably better - Usefull -> Useful - I'd have thought plugin-api-derive is a better name
15 lines
366 B
TOML
15 lines
366 B
TOML
[package]
|
|
name = "plugin-api-derive"
|
|
version = "0.1.0"
|
|
authors = ["ccgauche <gaucheron.laurent@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
proc-macro2 = "1.0.24"
|
|
syn = { version = "1.0.54", features = ["full","extra-traits"]}
|
|
quote = "1.0.7" |