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