From b96a46e31df02b91b5aaf4b92f535a5500827a10 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sun, 31 Jul 2022 19:19:07 -0700 Subject: [PATCH] Sort package entries in Cargo.toml --- Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f054c55..95a02ac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,14 +2,14 @@ name = "serde_bytes" version = "0.11.6" # remember to update html_root_url authors = ["David Tolnay "] -license = "MIT OR Apache-2.0" +categories = ["encoding"] description = "Optimized handling of `&[u8]` and `Vec` for Serde" -repository = "https://github.com/serde-rs/bytes" documentation = "https://docs.serde.rs/serde_bytes/" +edition = "2018" keywords = ["serde", "serialization", "no_std"] -categories = ["encoding"] +license = "MIT OR Apache-2.0" readme = "README.md" -edition = "2018" +repository = "https://github.com/serde-rs/bytes" rust-version = "1.31" [features]