From e933d85a93596ea77df2ed53b86a5931ff703efb Mon Sep 17 00:00:00 2001 From: Bazaah Date: Sat, 19 Mar 2022 08:26:55 +0000 Subject: [PATCH] build: add pre-publish fields to Cargo.toml - readme - description - repository - keywords - categories and reorganize field layout, better grouping important fields together. --- Cargo.toml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4d7d78c..32ca96d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,16 @@ [package] name = "yary" -version = "0.1.0" -authors = ["Bazaah "] edition = "2018" +authors = ["Bazaah "] +repository = "https://github.com/dolysis/yary" +description = "Lazy, efficient YAML parsing" +readme = "docs/README.md" + +version = "0.1.0" license = "MPL-2.0" -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +keywords = ["yaml", "parser", "parsing"] +categories = ["parser-implementations"] [features] # PRIVATE! FOR USE IN TEST ONLY! -- 2.40.1