From 0a4161b1318e01845cb32790b3bdadd618608361 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Tue, 17 Oct 2023 23:21:23 -0700 Subject: [PATCH] Add cargo.toml metadata to link to crate documentation Without this, crates.io does not put a Documentation link on the search page. --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 8a8a99e..476c22e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,6 +4,7 @@ version = "1.0.14" authors = ["David Tolnay "] categories = ["development-tools", "no-std", "no-std::no-alloc"] description = "Macros for all your token pasting needs" +documentation = "https://docs.rs/paste" edition = "2018" keywords = ["macros"] license = "MIT OR Apache-2.0"