From 9a4d64373fdfbf188d6fa2935f17673f683e2031 Mon Sep 17 00:00:00 2001 From: Andreas Linz Date: Sun, 30 Jan 2022 10:23:55 +0100 Subject: [PATCH] Remove duplicated keywword crates.io does not accept more than 5 keywords anymore, which caused my release to fail: error: failed to publish to registry at https://crates.io Caused by: the remote server responded with an error: invalid upload request: invalid length 6, expected at most 5 keywords per crate at line 1 column 2001 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index bdb87e1..a9317ad 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "rb" description = "A thread-safe ring buffer with blocking IO" -keywords = ["IO", "audio", "ring-buffer", "ringbuffer", "circular-buffer", "circularbuffer"] +keywords = ["IO", "audio", "ring-buffer", "circular-buffer"] version = "0.3.2" authors = ["Andreas Linz "] documentation = "https://docs.rs/rb"