1 | [package] |
2 | name = "paste" |
3 | version = "1.0.14" |
4 | authors = ["David Tolnay <dtolnay@gmail.com>" ] |
5 | categories = ["development-tools" , "no-std" , "no-std::no-alloc" ] |
6 | description = "Macros for all your token pasting needs" |
7 | edition = "2018" |
8 | keywords = ["macros" ] |
9 | license = "MIT OR Apache-2.0" |
10 | repository = "https://github.com/dtolnay/paste" |
11 | rust-version = "1.31" |
12 | |
13 | [lib] |
14 | proc-macro = true |
15 | |
16 | [dev-dependencies] |
17 | paste-test-suite = { version = "0" , path = "tests/macros" } |
18 | rustversion = "1.0" |
19 | trybuild = { version = "1.0.49" , features = ["diff" ] } |
20 | |
21 | [package.metadata.docs.rs] |
22 | targets = ["x86_64-unknown-linux-gnu" ] |
23 | rustdoc-args = ["--generate-link-to-definition" ] |
24 | |