From 53fdc6eb480fc7fbe3678d7a20015884d454fc16 Mon Sep 17 00:00:00 2001 From: Nick Fitzgerald Date: Tue, 27 Feb 2018 12:13:49 -0800 Subject: [PATCH] Add WebAssembly category I did not add this under `web-programming` because there is nothing inherently "Web-y" about wasm: it can be used as a general arch-independent binary format, as parity exemplifies. Examples crates that would use this category (some of which are not actually published on crates.io yet, but the point stands): * `parity-wasm` * `wasmi` * `wee_alloc` * `wasm-bindgen` * `wasm-gc` * `wasm-nm` * `wasm-snip` * `svelte` * `binaryen` * `wabt` --- src/boot/categories.toml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/boot/categories.toml b/src/boot/categories.toml index ac571ca148c..6ac09383142 100644 --- a/src/boot/categories.toml +++ b/src/boot/categories.toml @@ -429,6 +429,12 @@ description = """ Ways to view data, such as plotting or graphing.\ """ +[wasm] +name = "WebAssembly" +description = """ +Crates for use when targeting WebAssembly, or for manipulating WebAssembly.\ +""" + [web-programming] name = "Web programming" description = """