From c2f5bc883f390c8a058fe8b1c4614b85962dbad5 Mon Sep 17 00:00:00 2001 From: Thomas Niederberger Date: Thu, 14 Mar 2024 14:55:34 +0100 Subject: [PATCH] Update and improve crate-metadata --- Cargo.toml | 2 +- compose-macros/README.md | 2 +- keystore/Cargo.toml | 3 +++ keystore/README.md | 3 +++ 4 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 keystore/README.md diff --git a/Cargo.toml b/Cargo.toml index fd0316e0b..9ffeacb61 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" repository = "https://github.com/scs/substrate-api-client" description = "Json-rpc client with helper functions compatible with any Substrate node" readme = "README.md" -keywords = ["json", "rpc"] +keywords = ["json", "rpc", "polkadot", "api", "blockchain"] categories = ["no-std", "wasm"] diff --git a/compose-macros/README.md b/compose-macros/README.md index 0b5fb6319..45cb187c7 100644 --- a/compose-macros/README.md +++ b/compose-macros/README.md @@ -1,3 +1,3 @@ -# ac_primitives +# ac_compose_macros This crate is a submodule of the [substrate-api-client](https://github.com/scs/substrate-api-client). It contains macro definition for creating Substrate extrinsic and rpc calls for the api-client. diff --git a/keystore/Cargo.toml b/keystore/Cargo.toml index a9cec8ac2..473c649eb 100644 --- a/keystore/Cargo.toml +++ b/keystore/Cargo.toml @@ -4,6 +4,9 @@ version = "0.10.0" authors = ["Supercomputing Systems AG "] license = "Apache-2.0" edition = "2021" +repository = "https://github.com/scs/substrate-api-client" +description = "Keystore (and session key management) for ed25519 based chains like Polkadot. (fork of sc-keystore)" +readme = "README.md" [dependencies] array-bytes = "6.2" diff --git a/keystore/README.md b/keystore/README.md new file mode 100644 index 000000000..0d323221d --- /dev/null +++ b/keystore/README.md @@ -0,0 +1,3 @@ +# ac_keystore + +This crate is a submodule of the [substrate-api-client](https://github.com/scs/substrate-api-client). It is a fork of substrate's sc-keystore crate. The substrate-api-client needs its own fork in order to access private functions and members of the crate.