c50e9a9ed7
* Split text and binary client apis * Very initial attempt at new serialization * Defined ser+de for Recipient and ReplySURB * Response errors * builds with changes * Working WS API + moved to separate crate * updated python examples * Fixed parsing bug * Updated go examples * Updated rust examples * formatting * Removed unused imports * dependency updates * Further dependency changes * nymsphinx exposingn framing only if not in wasm32 * Cargo lock changes before develop merge * Pending work * Actually sending and receiving websocket from rust! * more WIP * Initial wasm client + establishing shared key with gateway! * Splitting and sending a message! * WIP * WIP * Initial wasm-ification of the gateway client * Passing reconstruction result to js callback! * Initial WASM cleaning pass * Dependency pruning * Moved processing loop to received_processor + at least ack unwrappingn * Post merge fix * Kinda updated react example * Old print statement removed * Removed yarn.lock * Fixed building issue for other clients * Fixed travis test command
59 lines
2.0 KiB
TOML
59 lines
2.0 KiB
TOML
[package]
|
|
build = "build.rs"
|
|
name = "nym-client-wasm"
|
|
authors = ["Dave Hrycyszyn <futurechimp@users.noreply.github.com>", "Jedrzej Stuczynski <andrew@nymtech.net>"]
|
|
version = "0.8.0"
|
|
edition = "2018"
|
|
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."
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[features]
|
|
default = ["console_error_panic_hook"]
|
|
offline-test = []
|
|
|
|
[dependencies]
|
|
futures = "0.3"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
wasm-bindgen = { version = "0.2", features = ["serde-serialize"] }
|
|
wasm-bindgen-futures = "0.4"
|
|
js-sys = "0.3"
|
|
rand = { version = "0.7.3", features = ["wasm-bindgen"] }
|
|
|
|
# internal
|
|
crypto = { path = "../../common/crypto" }
|
|
nymsphinx = { path = "../../common/nymsphinx" }
|
|
topology = { path = "../../common/topology" }
|
|
directory-client = { path = "../../common/client-libs/directory-client" }
|
|
gateway-client = { path = "../../common/client-libs/gateway-client" }
|
|
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 }
|
|
|
|
[build-dependencies]
|
|
built = "0.4.3"
|
|
|
|
[dev-dependencies]
|
|
wasm-bindgen-test = "0.2"
|
|
|
|
[package.metadata.wasm-pack.profile.release]
|
|
# this needs to be disabled until https://github.com/rustwasm/wasm-pack/issues/886 is resolved
|
|
wasm-opt = ["-Oz", "--enable-mutable-globals"]
|
|
|
|
|