1 | [package]
|
2 | name = "ptr_meta_derive"
|
3 | version = "0.2.0"
|
4 | authors = ["David Koloski <djkoloski@gmail.com>" ]
|
5 | edition = "2021"
|
6 | description = "Macros for ptr_meta"
|
7 | license = "MIT"
|
8 | documentation = "https://docs.rs/ptr_meta_derive"
|
9 | repository = "https://github.com/djkoloski/ptr_meta"
|
10 |
|
11 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
12 |
|
13 | [lib]
|
14 | proc-macro = true
|
15 |
|
16 | [dependencies]
|
17 | proc-macro2 = "1.0"
|
18 | syn = { version = "1.0" , features = ["full" ] }
|
19 | quote = "1.0"
|
20 | |