From dd829f34beb1807fff614fd3013c6f94736deb14 Mon Sep 17 00:00:00 2001 From: jamesatomc Date: Sat, 28 Dec 2024 19:08:01 +0700 Subject: [PATCH] Remove unnecessary fields from Cargo.toml files for cleaner configuration --- Cargo.toml | 10 ++++++---- consensus/pos/Cargo.toml | 4 ---- consensus/pow/Cargo.toml | 4 ---- crates/command/Cargo.toml | 4 ---- crates/core/k2/Cargo.toml | 4 ---- crates/core/network/Cargo.toml | 4 ---- crates/core/p2p/Cargo.toml | 4 ---- crates/core/wallet/key/Cargo.toml | 4 ---- crates/kari-move/Cargo.toml | 4 ---- crates/kari-node/Cargo.toml | 4 ---- crates/kari/Cargo.toml | 4 ---- crates/rpc/rpc-api/Cargo.toml | 4 ---- frameworks/Cargo.toml | 4 ---- 13 files changed, 6 insertions(+), 52 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a1bc5c4..d5b2972 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,3 +1,8 @@ +# categories = ["development-tools"] +# keywords = ["blockchain", "sdk"] +# homepage = "https://kanari.network" +# documentation = "https://kanari.network/docs" + [workspace] resolver = "2" @@ -98,11 +103,8 @@ strip = true debug = false [workspace.package] +name = "kanari-sdk" edition = "2021" -categories = ["development-tools"] -keywords = ["blockchain", "sdk"] -homepage = "https://kanari.network" -documentation = "https://kanari.network/docs" version = "0.1.0" authors = ["Kanari Network"] license = "Apache-2.0" diff --git a/consensus/pos/Cargo.toml b/consensus/pos/Cargo.toml index 63c9c65..e77bd38 100644 --- a/consensus/pos/Cargo.toml +++ b/consensus/pos/Cargo.toml @@ -1,10 +1,6 @@ [package] name = "consensus-pos" edition.workspace = true -categories.workspace = true -keywords.workspace = true -homepage.workspace = true -documentation.workspace = true version.workspace = true authors.workspace = true license.workspace = true diff --git a/consensus/pow/Cargo.toml b/consensus/pow/Cargo.toml index bb8e09e..c7bfd36 100644 --- a/consensus/pow/Cargo.toml +++ b/consensus/pow/Cargo.toml @@ -1,10 +1,6 @@ [package] name = "consensus-pow" edition.workspace = true -categories.workspace = true -keywords.workspace = true -homepage.workspace = true -documentation.workspace = true version.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/command/Cargo.toml b/crates/command/Cargo.toml index 36a3dc4..3cd9837 100644 --- a/crates/command/Cargo.toml +++ b/crates/command/Cargo.toml @@ -1,10 +1,6 @@ [package] name = "command" edition.workspace = true -categories.workspace = true -keywords.workspace = true -homepage.workspace = true -documentation.workspace = true version.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/core/k2/Cargo.toml b/crates/core/k2/Cargo.toml index 255cda5..386bb23 100644 --- a/crates/core/k2/Cargo.toml +++ b/crates/core/k2/Cargo.toml @@ -1,10 +1,6 @@ [package] name = "k2" edition.workspace = true -categories.workspace = true -keywords.workspace = true -homepage.workspace = true -documentation.workspace = true version.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/core/network/Cargo.toml b/crates/core/network/Cargo.toml index 7fd040d..4554410 100644 --- a/crates/core/network/Cargo.toml +++ b/crates/core/network/Cargo.toml @@ -1,10 +1,6 @@ [package] name = "network" edition.workspace = true -categories.workspace = true -keywords.workspace = true -homepage.workspace = true -documentation.workspace = true version.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/core/p2p/Cargo.toml b/crates/core/p2p/Cargo.toml index 653b6a6..38cc5f4 100644 --- a/crates/core/p2p/Cargo.toml +++ b/crates/core/p2p/Cargo.toml @@ -1,10 +1,6 @@ [package] name = "p2p-protocol" edition.workspace = true -categories.workspace = true -keywords.workspace = true -homepage.workspace = true -documentation.workspace = true version.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/core/wallet/key/Cargo.toml b/crates/core/wallet/key/Cargo.toml index aa9d89b..e771b4c 100644 --- a/crates/core/wallet/key/Cargo.toml +++ b/crates/core/wallet/key/Cargo.toml @@ -1,10 +1,6 @@ [package] name = "key" edition.workspace = true -categories.workspace = true -keywords.workspace = true -homepage.workspace = true -documentation.workspace = true version.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/kari-move/Cargo.toml b/crates/kari-move/Cargo.toml index 97d23d5..8a48528 100644 --- a/crates/kari-move/Cargo.toml +++ b/crates/kari-move/Cargo.toml @@ -1,10 +1,6 @@ [package] name = "kari-move" edition.workspace = true -categories.workspace = true -keywords.workspace = true -homepage.workspace = true -documentation.workspace = true version.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/kari-node/Cargo.toml b/crates/kari-node/Cargo.toml index 64d8975..d413c3d 100644 --- a/crates/kari-node/Cargo.toml +++ b/crates/kari-node/Cargo.toml @@ -1,10 +1,6 @@ [package] name = "node-kari" edition.workspace = true -categories.workspace = true -keywords.workspace = true -homepage.workspace = true -documentation.workspace = true version.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/kari/Cargo.toml b/crates/kari/Cargo.toml index d1eac22..6ca8996 100644 --- a/crates/kari/Cargo.toml +++ b/crates/kari/Cargo.toml @@ -1,10 +1,6 @@ [package] name = "kari" edition.workspace = true -categories.workspace = true -keywords.workspace = true -homepage.workspace = true -documentation.workspace = true version.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rpc/rpc-api/Cargo.toml b/crates/rpc/rpc-api/Cargo.toml index 2fbf1bd..7a697a3 100644 --- a/crates/rpc/rpc-api/Cargo.toml +++ b/crates/rpc/rpc-api/Cargo.toml @@ -1,10 +1,6 @@ [package] name = "rpc-api" edition.workspace = true -categories.workspace = true -keywords.workspace = true -homepage.workspace = true -documentation.workspace = true version.workspace = true authors.workspace = true license.workspace = true diff --git a/frameworks/Cargo.toml b/frameworks/Cargo.toml index 36499e3..f3d0281 100644 --- a/frameworks/Cargo.toml +++ b/frameworks/Cargo.toml @@ -1,10 +1,6 @@ [package] name = "frameworks" edition.workspace = true -categories.workspace = true -keywords.workspace = true -homepage.workspace = true -documentation.workspace = true version.workspace = true authors.workspace = true license.workspace = true