diff --git a/Cargo.toml b/Cargo.toml index a7f62b782d..b50c436464 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 diff --git a/common/topology/Cargo.toml b/common/topology/Cargo.toml index 200609e7d8..e877428958 100644 --- a/common/topology/Cargo.toml +++ b/common/topology/Cargo.toml @@ -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"]