a0178d28f7
* wasm: mix-fetch: remove harbour master client and use Nym API client * wasm: mix-fetch: fix up internal tester * Release Typescript SDK v1.4.1 * remove bump version tool from workspace * ts-sdk: contract clients: update and re-run autogen * ts: fix linting errors * update go * pin minimatch typings to fix lint errors * bump versions to rc * Update publish-sdk-npm.yml * Update publish-sdk-npm.yml * Update publish-sdk-npm.yml * Update publish-sdk-npm.yml * try disable typedoc because of minimatch errors * bump versions to rc0 * limit packages published to only wasm clients * TS SDK 1.4.1-rc1 * simplify version dependencies and add dist to dev mode * add back version complexity for CI * TS SDK 1.4.1-rc2 * ts-sdk: fix minimatch dependency and correct casing on `selfAddress` function call * wasm: rename `main` to `main_js` to avoid collision errors in exporting main from tests see https://github.com/wasm-bindgen/wasm-bindgen/issues/2206 * improve wasm js tests * TS SDK 1.4.1-rc3 * update example docs * TS SDK 1.4.1 release * update docs dependencies to SDK 1.4.1 * update yarn lock file after TS SDK 1.4.1 publish * Update ci-lint-typescript.yml * Update ci-lint-typescript.yml * Update ci-nym-wallet-storybook.yml * Bump node tester version and add additional yarn install step to fix linting --------- Co-authored-by: Mark Sinclair <mmsinclair@users.noreply.github.com>
54 lines
1.7 KiB
TOML
54 lines
1.7 KiB
TOML
[package]
|
|
name = "nym-client-wasm"
|
|
authors = [
|
|
"Dave Hrycyszyn <futurechimp@users.noreply.github.com>",
|
|
"Jedrzej Stuczynski <andrew@nymtech.net>",
|
|
]
|
|
version = "1.4.1"
|
|
edition = "2021"
|
|
keywords = ["nym", "sphinx", "wasm", "webassembly", "privacy"]
|
|
license = "Apache-2.0"
|
|
repository = "https://github.com/nymtech/nym"
|
|
description = "A webassembly client which can be used to interact with the the Nym privacy platform. Wasm is used for Sphinx packet generation."
|
|
rust-version = "1.85"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
futures = { workspace = true }
|
|
js-sys = { workspace = true }
|
|
rand = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
serde-wasm-bindgen = { workspace = true }
|
|
wasm-bindgen = { workspace = true }
|
|
wasm-bindgen-futures = { workspace = true }
|
|
gloo-timers = { workspace = true }
|
|
once_cell = { workspace = true }
|
|
|
|
thiserror = { workspace = true }
|
|
tsify = { workspace = true, features = ["js"] }
|
|
web-sys = { workspace = true }
|
|
|
|
nym-bin-common = { path = "../../common/bin-common" }
|
|
wasm-client-core = { path = "../../common/wasm/client-core" }
|
|
wasm-utils = { path = "../../common/wasm/utils" }
|
|
nym-gateway-requests = { path = "../../common/gateway-requests" }
|
|
|
|
nym-node-tester-utils = { path = "../../common/node-tester-utils", optional = true }
|
|
nym-node-tester-wasm = { path = "../node-tester", optional = true }
|
|
|
|
tokio_with_wasm = { workspace = true, features = ["full"] }
|
|
|
|
[dev-dependencies]
|
|
wasm-bindgen-test = { workspace = true }
|
|
|
|
[features]
|
|
default = ["node-tester"]
|
|
node-tester = ["nym-node-tester-wasm", "nym-node-tester-utils"]
|
|
|
|
[package.metadata.wasm-pack.profile.release]
|
|
wasm-opt = false
|