From d298341cf02d69af075a4a383d9165c1dda01f8d Mon Sep 17 00:00:00 2001 From: Geordon Worley Date: Sun, 5 Jan 2020 18:26:53 -0500 Subject: [PATCH 1/2] Add computer-vision slug Right now the closest thing in the list to computer vision is `science::robotics`. Computer vision algorithms are not always used for robotics. This slug also allows computer vision crates to be found easier instead of being lost among the other robotics crates. --- src/boot/categories.toml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/boot/categories.toml b/src/boot/categories.toml index 9d78dd97b43..38ebbe34576 100644 --- a/src/boot/categories.toml +++ b/src/boot/categories.toml @@ -80,6 +80,12 @@ description = """ Algorithms for making data smaller.\ """ +[computer-vision] +name = "Computer Vision" +description = """ +Crates for comprehending the world from video or images.\ +""" + [config] name = "Configuration" description = """ From b25daa36a8695d16b2c27bb7a29207c81aed4492 Mon Sep 17 00:00:00 2001 From: Geordon Worley Date: Tue, 7 Jan 2020 13:39:12 -0500 Subject: [PATCH 2/2] correct capitalization of v in Computer vision --- 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 38ebbe34576..c01ff6d3922 100644 --- a/src/boot/categories.toml +++ b/src/boot/categories.toml @@ -81,7 +81,7 @@ Algorithms for making data smaller.\ """ [computer-vision] -name = "Computer Vision" +name = "Computer vision" description = """ Crates for comprehending the world from video or images.\ """