Skip to content

Commit efe81f3

Browse files
committed
fixed wasm build for explorer-api-requests
1 parent 297eeea commit efe81f3

File tree

7 files changed

+6
-9
lines changed

7 files changed

+6
-9
lines changed

Cargo.lock

+2-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

clients/webassembly/Cargo.lock

-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

clients/webassembly/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "nym-client-wasm"
33
authors = ["Dave Hrycyszyn <[email protected]>", "Jedrzej Stuczynski <[email protected]>"]
44
version = "1.1.1"
55
edition = "2021"
6-
keywords = ["nym", "sphinx", "wasm", "webassembly", "privacy", "client"]
6+
keywords = ["nym", "sphinx", "wasm", "webassembly", "privacy"]
77
license = "Apache-2.0"
88
repository = "https://github.com/nymtech/nym"
99
description = "A webassembly client which can be used to interact with the the Nym privacy platform. Wasm is used for Sphinx packet generation."

common/client-libs/validator-client/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ reqwest = { workspace = true, features = ["json"] }
2626
thiserror = "1"
2727
log = { workspace = true }
2828
url = { version = "2.2", features = ["serde"] }
29-
tokio = { version = "1.24.1", features = ["sync", "time"] }
29+
tokio = { workspace = true, features = ["sync", "time"] }
3030
futures = "0.3"
3131
openssl = { version = "^0.10.55", features = ["vendored"], optional = true }
3232

explorer-api/explorer-api-requests/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
[dependencies]
77
nym-contracts-common = { path = "../../common/cosmwasm-smart-contracts/contracts-common" }
88
nym-mixnet-contract-common = { path = "../../common/cosmwasm-smart-contracts/mixnet-contract" }
9-
nym-validator-client = { path = "../../common/client-libs/validator-client" }
9+
nym-api-requests = { path = "../../nym-api/nym-api-requests" }
1010
schemars = { version = "0.8", features = ["preserve_order"] }
1111
serde = { version = "1.0", features = ["derive"] }
1212
ts-rs = { version = "6.1.2", optional = true }

explorer-api/explorer-api-requests/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
use nym_api_requests::models::NodePerformance;
12
use nym_contracts_common::Percent;
23
use nym_mixnet_contract_common::{Addr, Coin, Layer, MixId, MixNode};
3-
use nym_validator_client::models::NodePerformance;
44
use schemars::JsonSchema;
55
use serde::{Deserialize, Serialize};
66

nym-connect/desktop/Cargo.lock

-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)