This repository has been archived by the owner on Dec 28, 2023. It is now read-only.
forked from mimblewimble/grin-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
merge from upstream (mimblewimble#5)
* V2 slate versioning enablement (mimblewimble#85) * fix for command line listener port override * reduce parameter query size * Add slate versioning * rustfmt * bump version number * Add tests for slate version conversion * rustfmt * Updates and test addition based on bdap's review * rustfmt * fix mimblewimble#88 (mimblewimble#89) * Add `check_version` function to Foreign API (mimblewimble#87) * move api deser types into separate types mod * rustfmt * missing types file * make all exports from libwallet more explicit * rustfmt * add version check function to foreign api * rustfmt * change check_version return value to result, for consistency * fix the merge missed parts * rustfmt
- Loading branch information
Showing
50 changed files
with
4,163 additions
and
565 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 = "grin_wallet" | ||
version = "1.1.0-beta.1" | ||
version = "1.1.0-beta.2" | ||
authors = ["Grin Developers <[email protected]>"] | ||
description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format." | ||
license = "Apache-2.0" | ||
|
@@ -29,13 +29,13 @@ prettytable-rs = "0.7" | |
log = "0.4" | ||
linefeed = "0.5" | ||
|
||
grin_wallet_api = { path = "./api", version = "1.1.0-beta.1" } | ||
grin_wallet_impls = { path = "./impls", version = "1.1.0-beta.1" } | ||
grin_wallet_libwallet = { path = "./libwallet", version = "1.1.0-beta.1" } | ||
grin_wallet_controller = { path = "./controller", version = "1.1.0-beta.1" } | ||
grin_wallet_config = { path = "./config", version = "1.1.0-beta.1" } | ||
grin_wallet_api = { path = "./api", version = "1.1.0-beta.2" } | ||
grin_wallet_impls = { path = "./impls", version = "1.1.0-beta.2" } | ||
grin_wallet_libwallet = { path = "./libwallet", version = "1.1.0-beta.2" } | ||
grin_wallet_controller = { path = "./controller", version = "1.1.0-beta.2" } | ||
grin_wallet_config = { path = "./config", version = "1.1.0-beta.2" } | ||
|
||
grin_wallet_util = { path = "./util", version = "1.1.0-beta.1" } | ||
grin_wallet_util = { path = "./util", version = "1.1.0-beta.2" } | ||
|
||
[build-dependencies] | ||
built = "0.3" |
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 = "1.1.0-beta.1" | ||
version = "1.1.0-beta.2" | ||
authors = ["Grin Developers <[email protected]>"] | ||
description = "Grin Wallet API" | ||
license = "Apache-2.0" | ||
|
@@ -15,14 +15,14 @@ failure_derive = "0.1" | |
log = "0.4" | ||
uuid = { version = "0.7", features = ["serde", "v4"] } | ||
serde_json = "1" | ||
easy-jsonrpc = "0.4.1" | ||
easy-jsonrpc = "0.5.1" | ||
chrono = { version = "0.4.4", features = ["serde"] } | ||
|
||
grin_wallet_libwallet = { path = "../libwallet", version = "1.1.0-beta.1" } | ||
grin_wallet_config = { path = "../config", version = "1.1.0-beta.1" } | ||
grin_wallet_impls = { path = "../impls", version = "1.1.0-beta.1" } | ||
grin_wallet_libwallet = { path = "../libwallet", version = "1.1.0-beta.2" } | ||
grin_wallet_config = { path = "../config", version = "1.1.0-beta.2" } | ||
grin_wallet_impls = { path = "../impls", version = "1.1.0-beta.2" } | ||
|
||
grin_wallet_util = { path = "../util", version = "1.1.0-beta.1" } | ||
grin_wallet_util = { path = "../util", version = "1.1.0-beta.2" } | ||
|
||
[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
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
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.