d05b313a99
* Feature/wasm update (#341) * 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 * Updated wasm publishing instructions * Increased default presence and metrics sending interval (#354) * Defaulting to mix layer with fewest node if no argument provided (#353) * Defaulting to mix layer with fewest node if no argument provided * cargo fmt * Selecting the gateway randomly from 2 known good ones. (#355) * Selecting the gateway randomly from 2 known good ones. There's a problem with the config file in this commit though. * Saving value of chosen gateway * Removed duplicate printing of gateway being used Co-authored-by: jstuczyn <jedrzej.stuczynski@gmail.com> * More detailed error response on authentication/registration failure (#356) * Updated changelog * Updated version numbers Co-authored-by: Dave Hrycyszyn <futurechimp@users.noreply.github.com>
40 lines
987 B
JSON
40 lines
987 B
JSON
{
|
|
"name": "create-wasm-app",
|
|
"version": "0.1.0",
|
|
"description": "create an app to consume rust-generated wasm packages",
|
|
"main": "index.js",
|
|
"bin": {
|
|
"create-wasm-app": ".bin/create-wasm-app.js"
|
|
},
|
|
"scripts": {
|
|
"build": "webpack --config webpack.config.js",
|
|
"start": "webpack-dev-server --port 8001"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/rustwasm/create-wasm-app.git"
|
|
},
|
|
"keywords": [
|
|
"webassembly",
|
|
"wasm",
|
|
"rust",
|
|
"webpack"
|
|
],
|
|
"author": "Dave Hrycyszyn <futurechimp@users.noreply.github.com>",
|
|
"license": "Apache-2.0",
|
|
"bugs": {
|
|
"url": "https://github.com/nymtech/nym/issues"
|
|
},
|
|
"homepage": "https://nymtech.net/docs",
|
|
"devDependencies": {
|
|
"copy-webpack-plugin": "^5.1.2",
|
|
"hello-wasm-pack": "^0.1.0",
|
|
"webpack": "^4.44.1",
|
|
"webpack-cli": "^3.3.12",
|
|
"webpack-dev-server": "^3.11.0"
|
|
},
|
|
"dependencies": {
|
|
"@nymproject/nym-client-wasm": "file:../pkg"
|
|
}
|
|
}
|