From 3068d55fa1361a0e7d3151e4b12d0b06eb54c4f1 Mon Sep 17 00:00:00 2001 From: Nick Fitzgerald Date: Fri, 8 Jan 2021 08:57:52 -0800 Subject: [PATCH] wasi-nn: Fix keyword form in Cargo.toml metadata Keywords may not have spaces, apparently. --- crates/wasi-nn/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/wasi-nn/Cargo.toml b/crates/wasi-nn/Cargo.toml index e8067aba07..2e322f55e2 100644 --- a/crates/wasi-nn/Cargo.toml +++ b/crates/wasi-nn/Cargo.toml @@ -6,7 +6,7 @@ description = "Wasmtime implementation of the wasi-nn API" documentation = "https://docs.rs/wasmtime-wasi-nn" license = "Apache-2.0 WITH LLVM-exception" categories = ["wasm", "computer-vision"] -keywords = ["webassembly", "wasm", "neural network"] +keywords = ["webassembly", "wasm", "neural-network"] repository = "https://github.com/bytecodealliance/wasmtime" readme = "README.md" edition = "2018"