From b8405afc7fa49375db9da0abfd376cdf0a6597e0 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sun, 31 Jul 2022 19:19:03 -0700 Subject: [PATCH] Sort package entries in Cargo.toml --- Cargo.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0f77a24..17a3660 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,14 +2,14 @@ name = "link-cplusplus" version = "1.0.6" authors = ["David Tolnay "] -links = "cplusplus" -edition = "2018" -rust-version = "1.34" -license = "MIT OR Apache-2.0" description = "Link libstdc++ or libc++ automatically or manually" -repository = "https://github.com/dtolnay/link-cplusplus" documentation = "https://docs.rs/link-cplusplus" +edition = "2018" +license = "MIT OR Apache-2.0" +links = "cplusplus" readme = "README.md" +repository = "https://github.com/dtolnay/link-cplusplus" +rust-version = "1.34" [build-dependencies] cc = "1.0"