From 9e57d97041d9913f17edd589fe134e0168dd7908 Mon Sep 17 00:00:00 2001 From: Simon Walker Date: Wed, 13 Nov 2019 15:47:27 +0000 Subject: [PATCH 1/2] Add mathematics category This change adds the additional mathematics category, as well as removing "math" from the list of fields covered by the "science" category. --- src/boot/categories.toml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/boot/categories.toml b/src/boot/categories.toml index 2ab4c46a1ab..8e44b2ae223 100644 --- a/src/boot/categories.toml +++ b/src/boot/categories.toml @@ -272,6 +272,12 @@ Crates to help adapting internationalized software to specific \ languages and regions.\ """ +[mathematics] +name = "Mathematics" +description = """ +Crates related to mathematics or related topics. +""" + [memory-management] name = "Memory management" description = """ @@ -398,7 +404,7 @@ Rust.\ [science] name = "Science" description = """ -Crates related to solving problems involving math, physics, chemistry, \ +Crates related to solving problems involving physics, chemistry, \ biology, machine learning, geoscience, and other scientific fields.\ """ From 509f6911fa4e529f3994502e291ca19855f3f099 Mon Sep 17 00:00:00 2001 From: Simon Walker Date: Fri, 15 Nov 2019 14:00:01 +0000 Subject: [PATCH 2/2] Update description to match requested. --- src/boot/categories.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/boot/categories.toml b/src/boot/categories.toml index 8e44b2ae223..82abd231442 100644 --- a/src/boot/categories.toml +++ b/src/boot/categories.toml @@ -275,7 +275,7 @@ languages and regions.\ [mathematics] name = "Mathematics" description = """ -Crates related to mathematics or related topics. +Crates with a mathematical aspect. """ [memory-management]