From fa923c46184e46a6d715afb725d803d6cbb866fe Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sun, 31 Jul 2022 19:19:04 -0700 Subject: [PATCH] Sort package entries in Cargo.toml --- Cargo.toml | 10 +++++----- benches/Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c6d0d57..6371c00 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,15 +2,15 @@ name = "quote" version = "1.0.20" # don't forget to update html_root_url, version in readme for breaking changes authors = ["David Tolnay "] -license = "MIT OR Apache-2.0" +autobenches = false +categories = ["development-tools::procedural-macro-helpers"] description = "Quasi-quoting macro quote!(...)" -repository = "https://github.com/dtolnay/quote" documentation = "https://docs.rs/quote/" +edition = "2018" keywords = ["syn"] -categories = ["development-tools::procedural-macro-helpers"] +license = "MIT OR Apache-2.0" readme = "README.md" -edition = "2018" -autobenches = false +repository = "https://github.com/dtolnay/quote" rust-version = "1.31" [dependencies] diff --git a/benches/Cargo.toml b/benches/Cargo.toml index d191b3f..366f9df 100644 --- a/benches/Cargo.toml +++ b/benches/Cargo.toml @@ -2,8 +2,8 @@ name = "quote-benchmark" version = "0.0.0" authors = ["David Tolnay "] -license = "MIT OR Apache-2.0" edition = "2018" +license = "MIT OR Apache-2.0" publish = false [lib]