From c79f5c9be5d0c60e1eda78efdd10cbd0e0c410ba 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 +++++----- impl/Cargo.toml | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index eaab23f..d21c1c9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,14 +2,14 @@ name = "thiserror" version = "1.0.31" authors = ["David Tolnay "] -edition = "2018" -rust-version = "1.31" -license = "MIT OR Apache-2.0" +categories = ["rust-patterns"] description = "derive(Error)" -repository = "https://github.com/dtolnay/thiserror" documentation = "https://docs.rs/thiserror" -categories = ["rust-patterns"] +edition = "2018" +license = "MIT OR Apache-2.0" readme = "README.md" +repository = "https://github.com/dtolnay/thiserror" +rust-version = "1.31" [dependencies] thiserror-impl = { version = "=1.0.31", path = "impl" } diff --git a/impl/Cargo.toml b/impl/Cargo.toml index 041c46a..a9abf70 100644 --- a/impl/Cargo.toml +++ b/impl/Cargo.toml @@ -2,11 +2,11 @@ name = "thiserror-impl" version = "1.0.31" authors = ["David Tolnay "] +description = "Implementation detail of the `thiserror` crate" edition = "2018" -rust-version = "1.31" license = "MIT OR Apache-2.0" -description = "Implementation detail of the `thiserror` crate" repository = "https://github.com/dtolnay/thiserror" +rust-version = "1.31" [lib] proc-macro = true