From fb47311a92d40a98e8feb1259a12e0e045d6c411 Mon Sep 17 00:00:00 2001 From: Nico Burns Date: Tue, 8 Nov 2022 01:12:01 +0000 Subject: [PATCH] Reorder general category --- data/crates.json | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/data/crates.json b/data/crates.json index 0f50d42..aa4de9a 100644 --- a/data/crates.json +++ b/data/crates.json @@ -18,10 +18,13 @@ }] }, { - "name": "UUIDs", + "name": "Time & Date", "crates": [{ - "name": "uuid", - "notes": "Implements generating and parsing UUIDs and a number of utility functions" + "name": "time", + "notes": "The original datetime crate which was split out of std pre-rust-1.0. Preferrable if covers your needs, but it's quite limited in what it provides." + }, { + "name": "chrono", + "notes": "The most comphrehensive and full-featured datetime library, but more complex because of it." }] }, { @@ -43,6 +46,13 @@ "notes": "Use if need features such as backtracking which regex doesn't support" }] }, + { + "name": "UUIDs", + "crates": [{ + "name": "uuid", + "notes": "Implements generating and parsing UUIDs and a number of utility functions" + }] + }, { "name": "Temporary files", "crates": [{ @@ -57,16 +67,6 @@ "notes": "Uses a pure-Rust implementation by default. Use feature flags to opt in to system zlib." }] }, - { - "name": "Time & Date", - "crates": [{ - "name": "time", - "notes": "The original datetime crate which was split out of std pre-rust-1.0. Preferrable if covers your needs, but it's quite limited in what it provides." - }, { - "name": "chrono", - "notes": "The most comphrehensive and full-featured datetime library, but more complex because of it." - }] - }, { "name": "Insertion-ordered map", "crates": [{