From 395c1341869afcf77cc09c4dbd3f8b5481aafd24 Mon Sep 17 00:00:00 2001 From: mfahampshire Date: Thu, 16 Apr 2026 14:02:57 +0100 Subject: [PATCH] Cargo.toml package field fixes for preflight check --- common/config/Cargo.toml | 1 + common/cosmwasm-smart-contracts/multisig-contract/Cargo.toml | 1 + common/nym-kkt-context/Cargo.toml | 3 ++- common/nym-kkt/Cargo.toml | 2 ++ common/nym-lp/Cargo.toml | 1 + smolmix/core/Cargo.toml | 3 +++ 6 files changed, 10 insertions(+), 1 deletion(-) diff --git a/common/config/Cargo.toml b/common/config/Cargo.toml index 4c364f9292..2adbab789c 100644 --- a/common/config/Cargo.toml +++ b/common/config/Cargo.toml @@ -4,6 +4,7 @@ version.workspace = true authors = ["Jedrzej Stuczynski "] edition = "2021" license.workspace = true +repository.workspace = true homepage.workspace = true description = "Config related helpers and functions" diff --git a/common/cosmwasm-smart-contracts/multisig-contract/Cargo.toml b/common/cosmwasm-smart-contracts/multisig-contract/Cargo.toml index 31aef542af..c6a1894aca 100644 --- a/common/cosmwasm-smart-contracts/multisig-contract/Cargo.toml +++ b/common/cosmwasm-smart-contracts/multisig-contract/Cargo.toml @@ -4,6 +4,7 @@ version.workspace = true edition = "2021" license.workspace = true description = "Common code for the Nym multisig CosmWasm smart contract" +repository.workspace = true homepage.workspace = true [dependencies] diff --git a/common/nym-kkt-context/Cargo.toml b/common/nym-kkt-context/Cargo.toml index 008eaddcaf..b91f6b38e1 100644 --- a/common/nym-kkt-context/Cargo.toml +++ b/common/nym-kkt-context/Cargo.toml @@ -1,5 +1,6 @@ [package] name = "nym-kkt-context" +description = "Context types and definitions for the Nym KKT protocol" authors.workspace = true repository.workspace = true homepage.workspace = true @@ -15,7 +16,7 @@ publish = true num_enum = { workspace = true } thiserror = { workspace = true } -nym-kkt-ciphersuite = { path = "../nym-kkt-ciphersuite" } +nym-kkt-ciphersuite = { workspace = true } [lints] workspace = true diff --git a/common/nym-kkt/Cargo.toml b/common/nym-kkt/Cargo.toml index 6c7892e511..1bff6d7a09 100644 --- a/common/nym-kkt/Cargo.toml +++ b/common/nym-kkt/Cargo.toml @@ -1,7 +1,9 @@ [package] name = "nym-kkt" +description = "Key transport protocol for the Nym network" version = "0.1.0" authors = ["Georgio Nicolas "] +repository.workspace = true edition = { workspace = true } license.workspace = true publish = true diff --git a/common/nym-lp/Cargo.toml b/common/nym-lp/Cargo.toml index a71339a60a..eeca6fcfc6 100644 --- a/common/nym-lp/Cargo.toml +++ b/common/nym-lp/Cargo.toml @@ -1,5 +1,6 @@ [package] name = "nym-lp" +description = "Lewes Protocol session and transport layer for the Nym network" authors.workspace = true repository.workspace = true homepage.workspace = true diff --git a/smolmix/core/Cargo.toml b/smolmix/core/Cargo.toml index 173e519178..aee3249372 100644 --- a/smolmix/core/Cargo.toml +++ b/smolmix/core/Cargo.toml @@ -1,5 +1,8 @@ [package] name = "smolmix" +publish = true +repository.workspace = true +description = "Tunnel for TCP and UDP traffic to be sent over Nym mixnet to clearnet remote hosts" version = "0.0.1" edition = "2021" license.workspace = true