Skip to content

Commit

Permalink
Remove duplicated keywword
Browse files Browse the repository at this point in the history
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
  • Loading branch information
klingtnet committed Jan 30, 2022
1 parent 500b6aa commit 9a4d643
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
documentation = "https://docs.rs/rb"
Expand Down

0 comments on commit 9a4d643

Please sign in to comment.