From 8a745ffaeb7c0296ff7b901fbafe26d9915a2ef7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20M=C3=BCller?= Date: Mon, 18 Oct 2021 19:09:39 +0200 Subject: [PATCH] Limit `ink_eth_compatibility` crate keywords to five (#966) Otherwise crates.io refrains from publishing: invalid upload request: invalid length 6, expected at most 5 keywords per crate --- crates/eth_compatibility/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/eth_compatibility/Cargo.toml b/crates/eth_compatibility/Cargo.toml index 3f9442fd0a3..fa63f9f4db4 100644 --- a/crates/eth_compatibility/Cargo.toml +++ b/crates/eth_compatibility/Cargo.toml @@ -10,7 +10,7 @@ repository = "https://github.com/paritytech/ink" documentation = "https://docs.rs/ink_eth_compatibility/" homepage = "https://www.parity.io/" description = "[ink!] Ethereum related stuff." -keywords = ["wasm", "parity", "webassembly", "blockchain", "edsl", "ethereum"] +keywords = ["wasm", "parity", "webassembly", "blockchain", "ethereum"] categories = ["no-std", "embedded"] include = ["Cargo.toml", "src/**/*.rs", "/README.md", "/LICENSE"]