From d9da9c991f56d493fd3d6e743ab51a3591a5d1be Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sun, 31 Jul 2022 19:19:06 -0700 Subject: [PATCH] Sort package entries in Cargo.toml --- Cargo.toml | 10 +++++----- json/Cargo.toml | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 19fbb30f22..34d719833d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,12 +2,10 @@ name = "syn" version = "1.0.98" # don't forget to update html_root_url and syn.json authors = ["David Tolnay "] -license = "MIT OR Apache-2.0" +categories = ["development-tools::procedural-macro-helpers"] description = "Parser for Rust source code" -repository = "https://github.com/dtolnay/syn" documentation = "https://docs.rs/syn" -categories = ["development-tools::procedural-macro-helpers"] -readme = "README.md" +edition = "2018" include = [ "/benches/**", "/build.rs", @@ -18,7 +16,9 @@ include = [ "/src/**", "/tests/**", ] -edition = "2018" +license = "MIT OR Apache-2.0" +readme = "README.md" +repository = "https://github.com/dtolnay/syn" rust-version = "1.31" [features] diff --git a/json/Cargo.toml b/json/Cargo.toml index 9b824623fa..314dfff073 100644 --- a/json/Cargo.toml +++ b/json/Cargo.toml @@ -2,12 +2,12 @@ name = "syn-codegen" version = "0.3.0" # also update html_root_url authors = ["David Tolnay "] +categories = ["development-tools::procedural-macro-helpers"] +description = "Syntax tree describing Syn's syntax tree" +documentation = "https://docs.rs/syn-codegen" edition = "2018" license = "MIT OR Apache-2.0" -description = "Syntax tree describing Syn's syntax tree" repository = "https://github.com/dtolnay/syn" -documentation = "https://docs.rs/syn-codegen" -categories = ["development-tools::procedural-macro-helpers"] [dependencies] indexmap = { version = "1.0", features = ["serde-1"] }