[package] name = "concat_strs" version = "1.0.2" authors = ["Rebecca Turner "] description = "Macro for quickly building a String from components." edition = "2018" readme = "../README.md" repository = "https://github.com/9999years/concat_strs" license = "AGPL-3.0" keywords = ["string", "macro"] categories = [ "development-tools", "rust-patterns" ] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] path = "lib.rs" [dependencies] concat_strs_impl = { path = "../impl", version = "1.0.0" } proc-macro-hack = "0.5" [dev-dependencies] criterion = "0.3.2" [[bench]] name = "concat" harness = false