1 | [package] |
2 | name = "proc-macro-error-attr2" |
3 | version = "2.0.0" |
4 | authors = [ |
5 | "CreepySkeleton <creepy-skeleton@yandex.ru>" , |
6 | "GnomedDev <david2005thomas@gmail.com>" , |
7 | ] |
8 | edition = "2021" |
9 | rust-version = "1.61" |
10 | description = "Attribute macro for the proc-macro-error2 crate" |
11 | license = "MIT OR Apache-2.0" |
12 | repository = "https://github.com/GnomedDev/proc-macro-error-2" |
13 | |
14 | [lib] |
15 | proc-macro = true |
16 | |
17 | [dependencies] |
18 | quote = "1" |
19 | proc-macro2 = "1" |
20 | |
21 | [lints.clippy] |
22 | pedantic = { level = "warn" , priority = -1 } |
23 | |