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