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.
Merge pull request #43 from mwcproject/5.3.100
5.3.100
- Loading branch information
Showing
20 changed files
with
1,073 additions
and
237 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,6 +1,6 @@ | ||
[package] | ||
name = "mwc_wallet" | ||
version = "5.3.2" | ||
version = "5.3.3" | ||
authors = ["Grin Developers <[email protected]>"] | ||
description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format." | ||
license = "Apache-2.0" | ||
|
@@ -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.2" } | ||
grin_wallet_impls = { path = "./impls", version = "5.3.2" } | ||
grin_wallet_libwallet = { path = "./libwallet", version = "5.3.2" } | ||
grin_wallet_controller = { path = "./controller", version = "5.3.2" } | ||
grin_wallet_config = { path = "./config", version = "5.3.2" } | ||
grin_wallet_util = { path = "./util", version = "5.3.2" } | ||
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" } | ||
|
||
[build-dependencies] | ||
built = { version = "0.4", features = ["git2"]} | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "grin_wallet_api" | ||
version = "5.3.2" | ||
version = "5.3.3" | ||
authors = ["Grin Developers <[email protected]>"] | ||
description = "Grin Wallet API" | ||
license = "Apache-2.0" | ||
|
@@ -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.2" } | ||
grin_wallet_config = { path = "../config", version = "5.3.2" } | ||
grin_wallet_impls = { path = "../impls", version = "5.3.2" } | ||
grin_wallet_util = { path = "../util", version = "5.3.2" } | ||
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" } | ||
|
||
[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
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,6 +1,6 @@ | ||
[package] | ||
name = "grin_wallet_config" | ||
version = "5.3.2" | ||
version = "5.3.3" | ||
authors = ["Grin Developers <[email protected]>"] | ||
description = "Configuration for grin wallet , a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format." | ||
license = "Apache-2.0" | ||
|
@@ -17,7 +17,7 @@ toml = "0.5" | |
serde_derive = "1" | ||
thiserror = "1" | ||
|
||
grin_wallet_util = { path = "../util", version = "5.3.2" } | ||
grin_wallet_util = { path = "../util", version = "5.3.3" } | ||
|
||
[dev-dependencies] | ||
pretty_assertions = "0.6" |
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,6 +1,6 @@ | ||
[package] | ||
name = "grin_wallet_controller" | ||
version = "5.3.2" | ||
version = "5.3.3" | ||
authors = ["Grin Developers <[email protected]>"] | ||
description = "Controllers for grin wallet instantiation" | ||
license = "Apache-2.0" | ||
|
@@ -36,11 +36,11 @@ wagyu-ethereum = { git = "https://github.com/mwcproject/wagyu-ethereum", branch | |
libp2p = { git = "https://github.com/mwcproject/rust-libp2p", branch = "master", default-features = false, features = [ "noise", "yamux", "mplex", "dns", "tcp-tokio", "ping", "gossipsub"] } | ||
#libp2p = { path = "../../rust-libp2p", default-features = false, features = [ "noise", "yamux", "mplex", "dns", "tcp-tokio", "ping", "gossipsub"] } | ||
|
||
grin_wallet_util = { path = "../util", version = "5.3.2" } | ||
grin_wallet_api = { path = "../api", version = "5.3.2" } | ||
grin_wallet_impls = { path = "../impls", version = "5.3.2" } | ||
grin_wallet_libwallet = { path = "../libwallet", version = "5.3.2" } | ||
grin_wallet_config = { path = "../config", version = "5.3.2" } | ||
grin_wallet_util = { path = "../util", version = "5.3.3" } | ||
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_config = { path = "../config", version = "5.3.3" } | ||
|
||
[dev-dependencies] | ||
remove_dir_all = "0.7" |
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.