From 1a53266af002cc3fbb26dc89720040c32b490180 Mon Sep 17 00:00:00 2001 From: Sebastien Rousseau Date: Tue, 27 Aug 2024 17:05:36 +0100 Subject: [PATCH] fix(vrd): :ambulance: fix The following category slugs are not currently supported on crates.io: Algorithms, Encoding, Parser implementations, Data structures --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 7855385..0b28ec6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ # Metadata about the package. authors = ["The Random (VRD) Contributors"] build = "build.rs" -categories = ['Algorithms', 'Encoding','Parser implementations','Data structures'] +categories = ['algorithms', 'encoding','parser-implementations','data-structures'] description = "A Rust library for generating random and pseudo-random numbers based on the Mersenne Twister algorithm" documentation = "https://docs.rs/vrd" edition = "2021"