Skip to content

Commit

Permalink
Merge pull request #17 from Manta-Network/fix_wallets_deps
Browse files Browse the repository at this point in the history
Fix wallets deps
  • Loading branch information
Kevingislason authored Apr 20, 2022
2 parents e484c3f + 34582d0 commit 4885951
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 27 deletions.
10 changes: 5 additions & 5 deletions wallet/api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "manta-wasm-wallet-api",
"version": "0.0.0",
"main": "./index.js",
"private": false
}
"name": "manta-wasm-wallet-api",
"version": "1.0.0",
"main": "./index.js",
"private": false
}
12 changes: 6 additions & 6 deletions wallet/crate/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "manta-wallet-wasm-bindgen"
name = "manta-wasm-wallet"
edition = "2021"
version = "0.0.1"
version = "1.0.0"
authors = ["Manta Network <contact@manta.network>"]
readme = "README.md"
license-file = "LICENSE"
Expand Down Expand Up @@ -31,10 +31,10 @@ crate-type = ["cdylib"]
[dependencies]
console_error_panic_hook = { version = "0.1.7", default-features = false }
js-sys = { version = "0.3.56", default-features = false }
manta-accounting = { path = "../../../manta-rs/manta-accounting", default-features = false, features = ["serde"] }
manta-crypto = { path = "../../../manta-rs/manta-crypto", default-features = false, features = ["serde"] }
manta-pay = { path = "../../../manta-rs/manta-pay", default-features = false, features = ["groth16", "http", "serde"] }
manta-util = { path = "../../../manta-rs/manta-util", default-features = false, features = ["serde"] }
manta-accounting = { git = "https://github.com/manta-network/manta-rs.git", default-features = false, features = ["serde"] }
manta-crypto = { git = "https://github.com/manta-network/manta-rs.git", default-features = false, features = ["serde"] }
manta-pay = { git = "https://github.com/manta-network/manta-rs.git", default-features = false, features = ["groth16", "http", "serde"] }
manta-util = { git = "https://github.com/manta-network/manta-rs.git", default-features = false, features = ["serde"] }
serde_json = { version = "1.0.79", default-features = false, features = ["alloc", "arbitrary_precision"] }
wasm-bindgen = { version = "0.2.79", default-features = false, features = ["serde-serialize", "std"] }
wasm-bindgen-futures = { version = "0.4.29", default-features = false }
32 changes: 16 additions & 16 deletions wallet/package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"name": "manta-wasm-wallet",
"version": "0.0.1",
"main": "./crate/pkg",
"scripts": {
"build": "webpack",
"serve": "webpack serve"
},
"devDependencies": {
"@wasm-tool/wasm-pack-plugin": "1.5.0",
"html-webpack-plugin": "^5.3.2",
"text-encoding": "^0.7.0",
"webpack": "^5.49.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
}
}
"name": "manta-wasm-wallet",
"version": "1.0.0",
"main": "./crate/pkg",
"scripts": {
"build": "webpack",
"serve": "webpack serve"
},
"devDependencies": {
"@wasm-tool/wasm-pack-plugin": "1.5.0",
"html-webpack-plugin": "^5.3.2",
"text-encoding": "^0.7.0",
"webpack": "^5.49.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
}
}
Empty file removed wallet/pkg/index.js
Empty file.

0 comments on commit 4885951

Please sign in to comment.