more cargo versioning - wasm utils

This commit is contained in:
mfahampshire
2025-12-05 20:44:35 +00:00
parent 6e4ae07ac6
commit e2a65b07e7
2 changed files with 6 additions and 5 deletions
+1
View File
@@ -446,6 +446,7 @@ nym-validator-client = { version = "1.20.1", path = "common/client-libs/validato
nym-vesting-contract-common = { version = "1.20.1", path = "common/cosmwasm-smart-contracts/vesting-contract" }
nym-wireguard-types = { version = "1.20.1", path = "common/wireguard-types" }
nym-sqlx-pool-guard = { version = "1.2.0", path = "common/sqlx-pool-guard" }
nym-wasm-utils = { version = "1.20.1", path = "common/wasm/utils" }
# coconut/DKG related
# unfortunately until https://github.com/zkcrypto/bls12_381/issues/10 is resolved, we have to rely on the fork
+5 -5
View File
@@ -28,10 +28,10 @@ tsify = { workspace = true, features = ["js"], optional = true }
wasm-bindgen = { workspace = true, optional = true }
## internal
nym-crypto = { path = "../crypto" }
nym-mixnet-contract-common = { path = "../cosmwasm-smart-contracts/mixnet-contract" }
nym-sphinx-addressing = { path = "../nymsphinx/addressing" }
nym-sphinx-types = { path = "../nymsphinx/types", features = [
nym-crypto = { workspace = true }
nym-mixnet-contract-common = { workspace = true }
nym-sphinx-addressing = { workspace = true }
nym-sphinx-types = { workspace = true, features = [
"sphinx",
"outfox",
] }
@@ -42,7 +42,7 @@ nym-api-requests = { workspace = true }
# 'wasm-serde-types' feature
wasm-utils = { path = "../wasm/utils", default-features = false, optional = true }
wasm-utils = { workspace = true, default-features = false, optional = true }
[features]
default = ["provider-trait"]