59 lines
2.2 KiB
TOML
59 lines
2.2 KiB
TOML
[package]
|
|
name = "nym-client-wasm"
|
|
authors = ["Dave Hrycyszyn <futurechimp@users.noreply.github.com>", "Jedrzej Stuczynski <andrew@nymtech.net>"]
|
|
version = "1.0.0-rc.1"
|
|
edition = "2021"
|
|
keywords = ["nym", "sphinx", "wasm", "webassembly", "privacy", "client"]
|
|
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.56"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[features]
|
|
default = ["console_error_panic_hook"]
|
|
offline-test = []
|
|
coconut = ["coconut-interface", "credentials", "gateway-client/coconut"]
|
|
|
|
[dependencies]
|
|
futures = "0.3"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
wasm-bindgen = { version = "=0.2.78", features = ["serde-serialize"] }
|
|
wasm-bindgen-futures = "0.4"
|
|
js-sys = "0.3"
|
|
rand = { version = "0.7.3", features = ["wasm-bindgen"] }
|
|
url = "2.2"
|
|
|
|
# internal
|
|
coconut-interface = { path = "../../common/coconut-interface", optional = true }
|
|
credentials = { path = "../../common/credentials", optional = true }
|
|
crypto = { path = "../../common/crypto" }
|
|
nymsphinx = { path = "../../common/nymsphinx" }
|
|
topology = { path = "../../common/topology" }
|
|
gateway-client = { path = "../../common/client-libs/gateway-client", default-features = false, features = ["wasm"] }
|
|
validator-client = { path = "../../common/client-libs/validator-client", default-features = false }
|
|
wasm-utils = { path = "../../common/wasm-utils" }
|
|
|
|
# The `console_error_panic_hook` crate provides better debugging of panics by
|
|
# logging them with `console.error`. This is great for development, but requires
|
|
# all the `std::fmt` and `std::panicking` infrastructure, so isn't great for
|
|
# code size when deploying.
|
|
console_error_panic_hook = { version = "0.1", optional = true }
|
|
|
|
# `wee_alloc` is a tiny allocator for wasm that is only ~1K in code size
|
|
# compared to the default allocator's ~10K. It is slower than the default
|
|
# allocator, however.
|
|
#
|
|
# Unfortunately, `wee_alloc` requires nightly Rust when targeting wasm for now.
|
|
wee_alloc = { version = "0.4", optional = true }
|
|
|
|
[dev-dependencies]
|
|
wasm-bindgen-test = "0.3"
|
|
|
|
[package.metadata.wasm-pack.profile.release]
|
|
wasm-opt = false
|
|
|
|
|