diff --git a/Cargo.toml b/Cargo.toml index 296270b..ff64c32 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,6 +3,20 @@ name = "evm-signer-kms" version = "0.2.3" edition = "2021" authors = ["Lukasz Orlowski "] +license = "MIT" +description = "EVM signer using keys from AWS KMS" +repository = "https://github.com/orlowskilp/evm-signer-kms" +homepage = "https://github.com/orlowskilp/evm-signer-kms" +documentation = "https://docs.rs/evm-signer-kms" +readme = "README.md" +keywords = ["ethereum", "evm", "signer", "kms", "aws"] +categories = ["cryptography", "cryptography::cryptocurrencies"] +exclude = [ + ".gitignore", + ".git", + ".github", + ".devcontainer", +] [dependencies] sha3 = "0.10.8" diff --git a/Makefile b/Makefile index 3b50da5..6faaf24 100644 --- a/Makefile +++ b/Makefile @@ -12,6 +12,10 @@ test: cargo fmt cargo test --lib --tests +.PHONY: test_coverage +test_coverage: + cargo llvm-cov + .PHONY: doc_test doc_test: cargo test --doc