From f6faaac192002a32f882d93f51442f2deea89c81 Mon Sep 17 00:00:00 2001 From: aspect Date: Tue, 31 Oct 2023 21:31:02 +0200 Subject: [PATCH] Updates required for crate publishing (#308) * Update kaspa-perf-monitor description * update description * kaspa-mining-errors description * kaspa-cli - fix manifest include for txt files * kaspa-cli - fix include for css files * kaspa-os - update manifest include directives --- cli/Cargo.toml | 8 +++++++- kos/Cargo.toml | 8 +++++++- metrics/perf_monitor/Cargo.toml | 1 + mining/errors/Cargo.toml | 1 + 4 files changed, 16 insertions(+), 2 deletions(-) diff --git a/cli/Cargo.toml b/cli/Cargo.toml index da26c739e..61d894506 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -4,8 +4,14 @@ description = "Kaspa CLI library" version.workspace = true edition.workspace = true authors.workspace = true -include.workspace = true license.workspace = true +include = [ + "src/**/*.rs", + "src/**/*.txt", + "src/**/*.css", + "Cargo.toml", + "Cargo.lock", +] [features] legacy-rpc = ["kaspa-wallet-core/legacy-rpc"] diff --git a/kos/Cargo.toml b/kos/Cargo.toml index b4b847ae6..43138bcf2 100644 --- a/kos/Cargo.toml +++ b/kos/Cargo.toml @@ -6,9 +6,15 @@ description = "Kaspa Node & Wallet Manager" version = "0.0.2" edition.workspace = true authors.workspace = true -include.workspace = true license.workspace = true repository = "https://github.com/kaspanet/rusty-kaspa" +include = [ + "src/**/*.rs", + "src/**/*.txt", + "src/**/*.css", + "Cargo.toml", + "Cargo.lock", +] [features] metrics = [] diff --git a/metrics/perf_monitor/Cargo.toml b/metrics/perf_monitor/Cargo.toml index 1cfb84873..c621de526 100644 --- a/metrics/perf_monitor/Cargo.toml +++ b/metrics/perf_monitor/Cargo.toml @@ -1,5 +1,6 @@ [package] name = "kaspa-perf-monitor" +description = "Kaspa process performance monitoring tools" version.workspace = true authors.workspace = true license.workspace = true diff --git a/mining/errors/Cargo.toml b/mining/errors/Cargo.toml index 4c736fac2..e3c644f7b 100644 --- a/mining/errors/Cargo.toml +++ b/mining/errors/Cargo.toml @@ -1,5 +1,6 @@ [package] name = "kaspa-mining-errors" +description = "Kaspa mining error definitions" version.workspace = true edition.workspace = true authors.workspace = true