| 1 | [package] |
| 2 | name = "paste" |
| 3 | version = "1.0.15" |
| 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 | documentation = "https://docs.rs/paste" |
| 8 | edition = "2018" |
| 9 | keywords = ["macros" ] |
| 10 | license = "MIT OR Apache-2.0" |
| 11 | repository = "https://github.com/dtolnay/paste" |
| 12 | rust-version = "1.31" |
| 13 | |
| 14 | [lib] |
| 15 | proc-macro = true |
| 16 | |
| 17 | [dev-dependencies] |
| 18 | paste-test-suite = { version = "0" , path = "tests/macros" } |
| 19 | rustversion = "1.0" |
| 20 | trybuild = { version = "1.0.49" , features = ["diff" ] } |
| 21 | |
| 22 | [package.metadata.docs.rs] |
| 23 | targets = ["x86_64-unknown-linux-gnu" ] |
| 24 | rustdoc-args = ["--generate-link-to-definition" ] |
| 25 | |