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