forked from mimblewimble/grin-wallet
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* change crate names * change crates name v2 * Add Mwc devs copyright * fix process invoice test * add version to dependencies * change email and repo * mwc_util 5.3.4 * bump mwc node version to 5.3.5 * bump bitcoin crate to 0.27.1
- Loading branch information
Showing
167 changed files
with
3,459 additions
and
3,094 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
[package] | ||
name = "mwc_wallet" | ||
version = "5.3.3" | ||
authors = ["Grin Developers <[email protected]>"] | ||
authors = ["Mwc Developers <[email protected]>"] | ||
description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format." | ||
license = "Apache-2.0" | ||
repository = "https://github.com/mwc-project/mwc-wallet" | ||
keywords = [ "crypto", "grin", "mimblewimble" ] | ||
keywords = [ "crypto", "mwc", "mimblewimble" ] | ||
readme = "README.md" | ||
exclude = ["**/*.grin", "**/*.grin2"] | ||
exclude = ["**/*.mwc", "**/*.mwc2"] | ||
build = "src/build/build.rs" | ||
edition = "2018" | ||
|
||
[[bin]] | ||
name = "mwc-wallet" | ||
path = "src/bin/grin-wallet.rs" | ||
path = "src/bin/mwc-wallet.rs" | ||
|
||
[workspace] | ||
members = ["api", "config", "controller", "impls", "libwallet", "util"] | ||
|
@@ -36,12 +36,12 @@ funty = "=1.1.0" | |
uuid = { version = "0.8", features = ["serde", "v4"] } | ||
shlex = "1.3.0" | ||
|
||
grin_wallet_api = { path = "./api", version = "5.3.3" } | ||
grin_wallet_impls = { path = "./impls", version = "5.3.3" } | ||
grin_wallet_libwallet = { path = "./libwallet", version = "5.3.3" } | ||
grin_wallet_controller = { path = "./controller", version = "5.3.3" } | ||
grin_wallet_config = { path = "./config", version = "5.3.3" } | ||
grin_wallet_util = { path = "./util", version = "5.3.3" } | ||
mwc_wallet_api = { path = "./api", version = "5.3.3" } | ||
mwc_wallet_impls = { path = "./impls", version = "5.3.3" } | ||
mwc_wallet_libwallet = { path = "./libwallet", version = "5.3.3" } | ||
mwc_wallet_controller = { path = "./controller", version = "5.3.3" } | ||
mwc_wallet_config = { path = "./config", version = "5.3.3" } | ||
mwc_wallet_util = { path = "./util", version = "5.3.3" } | ||
|
||
[build-dependencies] | ||
built = { version = "0.4", features = ["git2"]} | ||
|
@@ -55,4 +55,4 @@ remove_dir_all = "0.7" | |
easy-jsonrpc-mw = "0.5.4" | ||
|
||
[patch.crates-io] | ||
grin_secp256k1zkp = { git = "https://github.com/mwcproject/rust-secp256k1-zkp", tag = "0.7.14" } | ||
mwc_secp256k1zkp = { git = "https://github.com/mwcproject/rust-secp256k1-zkp", tag = "0.7.16" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
[package] | ||
name = "grin_wallet_api" | ||
name = "mwc_wallet_api" | ||
version = "5.3.3" | ||
authors = ["Grin Developers <[email protected]>"] | ||
description = "Grin Wallet API" | ||
authors = ["Mwc Developers <[email protected]>"] | ||
description = "Mwc Wallet API" | ||
license = "Apache-2.0" | ||
repository = "https://github.com/mimblewimble/grin-wallet" | ||
keywords = [ "crypto", "grin", "mimblewimble" ] | ||
exclude = ["**/*.grin", "**/*.grin2"] | ||
repository = "https://github.com/mwcproject/mwc-wallet" | ||
keywords = [ "crypto", "mwc", "mimblewimble" ] | ||
exclude = ["**/*.mwc", "**/*.mwc2"] | ||
edition = "2018" | ||
|
||
[dependencies] | ||
|
@@ -24,10 +24,10 @@ ed25519-dalek = "1.0.0-pre.4" | |
colored = "1.6" | ||
x25519-dalek = "0.6" | ||
|
||
grin_wallet_libwallet = { path = "../libwallet", version = "5.3.3" } | ||
grin_wallet_config = { path = "../config", version = "5.3.3" } | ||
grin_wallet_impls = { path = "../impls", version = "5.3.3" } | ||
grin_wallet_util = { path = "../util", version = "5.3.3" } | ||
mwc_wallet_libwallet = { path = "../libwallet", version = "5.3.3" } | ||
mwc_wallet_config = { path = "../config", version = "5.3.3" } | ||
mwc_wallet_impls = { path = "../impls", version = "5.3.3" } | ||
mwc_wallet_util = { path = "../util", version = "5.3.3" } | ||
|
||
[dev-dependencies] | ||
serde_json = "1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.