From 4e0e61c98182d9ed114ab8f4b535b6bea8308e60 Mon Sep 17 00:00:00 2001 From: Alexander Simmerl Date: Thu, 10 Jun 2021 15:34:03 +0200 Subject: [PATCH] meta: Add missing crate metadata to satisfy clippy (#888) (#899) Signed-off-by: Alexander Simmerl Co-authored-by: Thane Thomson --- abci/Cargo.toml | 1 + light-client-js/Cargo.toml | 1 + light-client/Cargo.toml | 1 + pbt-gen/Cargo.toml | 5 +++++ rpc/Cargo.toml | 2 ++ testgen/Cargo.toml | 18 ++++++++++-------- 6 files changed, 20 insertions(+), 8 deletions(-) diff --git a/abci/Cargo.toml b/abci/Cargo.toml index 72fdeacf8..874f470c5 100644 --- a/abci/Cargo.toml +++ b/abci/Cargo.toml @@ -5,6 +5,7 @@ authors = ["Thane Thomson "] edition = "2018" license = "Apache-2.0" readme = "README.md" +categories = ["cryptography::cryptocurrencies", "network-programming"] keywords = ["abci", "blockchain", "bft", "consensus", "tendermint"] repository = "https://github.com/informalsystems/tendermint-rs" description = """ diff --git a/light-client-js/Cargo.toml b/light-client-js/Cargo.toml index 6b38efa20..ceb369cab 100644 --- a/light-client-js/Cargo.toml +++ b/light-client-js/Cargo.toml @@ -9,6 +9,7 @@ edition = "2018" license = "Apache-2.0" readme = "README.md" keywords = ["blockchain", "bft", "consensus", "light-client", "tendermint"] +categories = ["cryptography::cryptocurrencies", "network-programming"] repository = "https://github.com/informalsystems/tendermint-rs" description = """ tendermint-light-client-js provides a lightweight, WASM-based interface to diff --git a/light-client/Cargo.toml b/light-client/Cargo.toml index 3e94b4b6a..748eaaebc 100644 --- a/light-client/Cargo.toml +++ b/light-client/Cargo.toml @@ -5,6 +5,7 @@ edition = "2018" license = "Apache-2.0" readme = "README.md" keywords = ["blockchain", "bft", "consensus", "cosmos", "tendermint"] +categories = ["cryptography::cryptocurrencies", "network-programming"] repository = "https://github.com/informalsystems/tendermint-rs" authors = [ "Sean Braithwaite ", diff --git a/pbt-gen/Cargo.toml b/pbt-gen/Cargo.toml index d7dd8f719..a58984b30 100644 --- a/pbt-gen/Cargo.toml +++ b/pbt-gen/Cargo.toml @@ -3,6 +3,11 @@ name = "tendermint-pbt-gen" version = "0.19.0" authors = ["Shon Feder "] edition = "2018" +license = "Apache-2.0" +readme = "README.md" +categories = ["development-tools"] +keywords = ["tendermint", "property-based testing"] +repository = "https://github.com/informalsystems/tendermint-rs" description = """ An internal crate providing proptest generators used across our crates and not depending on any code internal to those crates. diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index 8cf6a2227..f4c24f14a 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -6,6 +6,8 @@ license = "Apache-2.0" homepage = "https://www.tendermint.com/" repository = "https://github.com/informalsystems/tendermint-rs" readme = "README.md" +keywords = ["blockchain", "cosmos", "tendermint"] +categories = ["cryptography::cryptocurrencies", "network-programming"] authors = [ "Sean Braithwaite ", "Ethan Buchman ", diff --git a/testgen/Cargo.toml b/testgen/Cargo.toml index d3eabd831..46ec0db00 100644 --- a/testgen/Cargo.toml +++ b/testgen/Cargo.toml @@ -1,12 +1,14 @@ [package] -name = "tendermint-testgen" -version = "0.19.0" -authors = ["Andrey Kuprianov ", "Shivani Joshi "] -edition = "2018" -readme = "README.md" -license = "Apache-2.0" -homepage = "https://www.tendermint.com/" -repository = "https://github.com/informalsystems/tendermint-rs/tree/master/testgen" +name = "tendermint-testgen" +version = "0.19.0" +authors = ["Andrey Kuprianov ", "Shivani Joshi "] +edition = "2018" +readme = "README.md" +license = "Apache-2.0" +homepage = "https://www.tendermint.com/" +repository = "https://github.com/informalsystems/tendermint-rs/tree/master/testgen" +keywords = ["blockchain", "tendermint", "testing"] +categories = ["cryptography::cryptocurrencies", "development-tools"] description = """ tendermint-testgen is a library and a small binary utility for generating tendermint datastructures from minimal input (for testing purposes only).