Making workspace versions for publication + removing unnecessary crates

from publication
This commit is contained in:
mfahampshire
2026-01-05 13:40:04 +00:00
parent 2ab7bc6e85
commit c0811bc2a2
14 changed files with 28 additions and 22 deletions
Generated
+1 -1
View File
@@ -7845,7 +7845,7 @@ dependencies = [
[[package]]
name = "nymvisor"
version = "0.1.32"
version = "1.20.1"
dependencies = [
"anyhow",
"bytes",
+1 -1
View File
@@ -405,7 +405,7 @@ nym-gateway-requests = { version = "1.20.1", path = "common/gateway-requests" }
nym-group-contract-common = { version = "1.20.1", path = "common/cosmwasm-smart-contracts/group-contract" }
nym-http-api-client = { version = "1.20.1", path = "common/http-api-client" }
nym-http-api-client-macro = { version = "1.20.1", path = "common/http-api-client-macro" }
nym-http-api-common = { version = "1.20.1", path = "common/http-api-common" }
nym-http-api-common = { version = "1.20.1", path = "common/http-api-common", default-features = false }
nym-id = { version = "1.20.1", path = "common/nym-id" }
nym-metrics = { version = "1.20.1", path = "common/nym-metrics" }
nym-mixnet-client = { version = "1.20.1", path = "common/client-libs/mixnet-client" }
+1 -1
View File
@@ -16,7 +16,7 @@ thiserror = { workspace = true }
toml = { workspace = true, features = ["display"] }
url = { workspace = true }
nym-network-defaults = { path = "../network-defaults", features = ["utoipa"] }
nym-network-defaults = { workspace = true, features = ["utoipa"] }
[features]
default = ["dirs"]
@@ -3,6 +3,7 @@ name = "nym-coconut-dkg-common"
version.workspace = true
edition = "2021"
license.workspace = true
description = "Common crate for Nym's DKG cosmwasm contract"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+2 -2
View File
@@ -19,8 +19,8 @@ time = { workspace = true }
tracing = { workspace = true }
utoipa = { workspace = true }
nym-coconut-dkg-common = { path = "../cosmwasm-smart-contracts/coconut-dkg" }
nym-crypto = { path = "../crypto", features = ["asymmetric"] }
nym-coconut-dkg-common = { workspace = true }
nym-crypto = { workspace = true, features = ["asymmetric"] }
[lints]
+1 -1
View File
@@ -13,7 +13,7 @@ license.workspace = true
[dependencies]
time.workspace = true
nym-compact-ecash = { path = "../nym_offline_compact_ecash", optional = true }
nym-compact-ecash = { workspace = true, optional = true }
[features]
expiration = ["nym-compact-ecash"]
+4 -4
View File
@@ -38,10 +38,10 @@ bytes = { workspace = true }
encoding_rs = { workspace = true }
mime = { workspace = true }
nym-http-api-common = { path = "../http-api-common", default-features = false }
nym-bin-common = { path = "../bin-common" }
nym-network-defaults = { path = "../network-defaults", optional = true }
nym-http-api-client-macro = { path = "../http-api-client-macro" }
nym-http-api-common = { workspace = true }
nym-bin-common = { workspace = true }
nym-network-defaults = { workspace = true, optional = true }
nym-http-api-client-macro = { workspace = true }
[target."cfg(not(target_arch = \"wasm32\"))".dependencies]
hickory-resolver = { workspace = true, features = ["https-ring", "tls-ring", "webpki-roots"] }
+1
View File
@@ -3,6 +3,7 @@ name = "nym-ledger"
version.workspace = true
edition = "2021"
license.workspace = true
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@@ -7,6 +7,7 @@ version.workspace = true
authors = ["Ania Piotrowska <ania@nymtech.net>"]
edition = "2021"
license = { workspace = true }
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+9 -9
View File
@@ -14,15 +14,15 @@ rand_distr = { workspace = true }
rand_chacha = { workspace = true }
thiserror = { workspace = true }
nym-sphinx-acknowledgements = { path = "acknowledgements" }
nym-sphinx-addressing = { path = "addressing" }
nym-sphinx-anonymous-replies = { path = "anonymous-replies" }
nym-sphinx-chunking = { path = "chunking" }
nym-sphinx-cover = { path = "cover" }
nym-sphinx-forwarding = { path = "forwarding" }
nym-sphinx-params = { path = "params" }
nym-sphinx-routing = { path = "routing" }
nym-sphinx-types = { path = "types" }
nym-sphinx-acknowledgements = { workspace = true }
nym-sphinx-addressing = { workspace = true }
nym-sphinx-anonymous-replies = { workspace = true }
nym-sphinx-chunking = { workspace = true }
nym-sphinx-cover = { workspace = true }
nym-sphinx-forwarding = { workspace = true }
nym-sphinx-params = { workspace = true }
nym-sphinx-routing = { workspace = true }
nym-sphinx-types = { workspace = true }
# those dependencies are due to intriducing preparer and receiver. Perpaphs that indicates they should be moved
# to separate crate?
+3 -3
View File
@@ -20,14 +20,14 @@ thiserror = { workspace = true }
tracing = { workspace = true }
utoipa = { workspace = true, optional = true }
nym-http-api-client = { path = "../http-api-client", default-features = false }
nym-crypto = { path = "../crypto", features = ["asymmetric", "serde", "naive_jwt"] }
nym-http-api-client = { workspace = true }
nym-crypto = { workspace = true, features = ["asymmetric", "serde", "naive_jwt"] }
[dev-dependencies]
anyhow = { workspace = true }
time = { workspace = true, features = ["macros"] }
nym-test-utils = { path = "../test-utils" }
nym-crypto = { path = "../crypto", features = ["rand"] }
nym-crypto = { workspace = true, features = ["rand"] }
[features]
+1
View File
@@ -9,6 +9,7 @@ edition.workspace = true
license.workspace = true
rust-version.workspace = true
readme.workspace = true
publish = false
[dependencies]
thiserror = { workspace = true }
+1
View File
@@ -7,6 +7,7 @@ homepage.workspace = true
documentation.workspace = true
edition.workspace = true
license.workspace = true
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+1
View File
@@ -7,6 +7,7 @@ homepage.workspace = true
documentation.workspace = true
edition.workspace = true
license.workspace = true
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html