forked from mimblewimble/grin
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
grin v5.3 (0139) Remove Merkle Proof Generation from Foreign API `get…
…_outputs` (mimblewimble#3792) (mimblewimble#3793) MWC - Merkle Proof is not removed, it is optional requested data, let's not break API
- Loading branch information
Showing
12 changed files
with
67 additions
and
67 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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" | ||
version = "5.3.1" | ||
version = "5.3.2" | ||
authors = ["Grin Developers <[email protected]>"] | ||
description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format." | ||
license = "Apache-2.0" | ||
|
@@ -32,14 +32,14 @@ serde_json = "1" | |
term = "0.6" | ||
cursive_table_view = "0.14.0" | ||
|
||
grin_api = { path = "./api", version = "5.3.1" } | ||
grin_config = { path = "./config", version = "5.3.1" } | ||
grin_chain = { path = "./chain", version = "5.3.1" } | ||
grin_core = { path = "./core", version = "5.3.1" } | ||
grin_keychain = { path = "./keychain", version = "5.3.1" } | ||
grin_p2p = { path = "./p2p", version = "5.3.1" } | ||
grin_servers = { path = "./servers", version = "5.3.1" } | ||
grin_util = { path = "./util", version = "5.3.1" } | ||
grin_api = { path = "./api", version = "5.3.2" } | ||
grin_config = { path = "./config", version = "5.3.2" } | ||
grin_chain = { path = "./chain", version = "5.3.2" } | ||
grin_core = { path = "./core", version = "5.3.2" } | ||
grin_keychain = { path = "./keychain", version = "5.3.2" } | ||
grin_p2p = { path = "./p2p", version = "5.3.2" } | ||
grin_servers = { path = "./servers", version = "5.3.2" } | ||
grin_util = { path = "./util", version = "5.3.2" } | ||
|
||
[dependencies.cursive] | ||
version = "0.20" | ||
|
@@ -50,5 +50,5 @@ features = ["pancurses-backend"] | |
built = { version = "0.4", features = ["git2"]} | ||
|
||
[dev-dependencies] | ||
grin_chain = { path = "./chain", version = "5.3.1" } | ||
grin_store = { path = "./store", version = "5.3.1" } | ||
grin_chain = { path = "./chain", version = "5.3.2" } | ||
grin_store = { path = "./store", version = "5.3.2" } |
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_api" | ||
version = "5.3.1" | ||
version = "5.3.2" | ||
authors = ["Grin Developers <[email protected]>"] | ||
description = "APIs for grin, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format." | ||
license = "Apache-2.0" | ||
|
@@ -30,12 +30,12 @@ url = "2.1" | |
bytes = "0.5" | ||
chrono = { version = "0.4.11", features = ["serde"] } | ||
|
||
grin_core = { path = "../core", version = "5.3.1" } | ||
grin_chain = { path = "../chain", version = "5.3.1" } | ||
grin_p2p = { path = "../p2p", version = "5.3.1" } | ||
grin_pool = { path = "../pool", version = "5.3.1" } | ||
grin_store = { path = "../store", version = "5.3.1" } | ||
grin_util = { path = "../util", version = "5.3.1" } | ||
grin_core = { path = "../core", version = "5.3.2" } | ||
grin_chain = { path = "../chain", version = "5.3.2" } | ||
grin_p2p = { path = "../p2p", version = "5.3.2" } | ||
grin_pool = { path = "../pool", version = "5.3.2" } | ||
grin_store = { path = "../store", version = "5.3.2" } | ||
grin_util = { path = "../util", version = "5.3.2" } | ||
|
||
# NOTE. We can't have hyper-rustls the same version for Android and non android. because if how rust builds dependency. | ||
# Android must have v0.20+ | ||
|
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_chain" | ||
version = "5.3.1" | ||
version = "5.3.2" | ||
authors = ["Grin Developers <[email protected]>"] | ||
description = "Chain implementation for grin, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format." | ||
license = "Apache-2.0" | ||
|
@@ -23,10 +23,10 @@ chrono = "0.4.11" | |
lru-cache = "0.1" | ||
lazy_static = "1" | ||
|
||
grin_core = { path = "../core", version = "5.3.1" } | ||
grin_keychain = { path = "../keychain", version = "5.3.1" } | ||
grin_store = { path = "../store", version = "5.3.1" } | ||
grin_util = { path = "../util", version = "5.3.1" } | ||
grin_core = { path = "../core", version = "5.3.2" } | ||
grin_keychain = { path = "../keychain", version = "5.3.2" } | ||
grin_store = { path = "../store", version = "5.3.2" } | ||
grin_util = { path = "../util", version = "5.3.2" } | ||
|
||
[dev-dependencies] | ||
env_logger = "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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "grin_config" | ||
version = "5.3.1" | ||
version = "5.3.2" | ||
authors = ["Grin Developers <[email protected]>"] | ||
description = "Configuration for grin, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format." | ||
license = "Apache-2.0" | ||
|
@@ -17,10 +17,10 @@ toml = "0.5" | |
dirs = "2.0" | ||
thiserror = "1" | ||
|
||
grin_core = { path = "../core", version = "5.3.1" } | ||
grin_servers = { path = "../servers", version = "5.3.1" } | ||
grin_p2p = { path = "../p2p", version = "5.3.1" } | ||
grin_util = { path = "../util", version = "5.3.1" } | ||
grin_core = { path = "../core", version = "5.3.2" } | ||
grin_servers = { path = "../servers", version = "5.3.2" } | ||
grin_p2p = { path = "../p2p", version = "5.3.2" } | ||
grin_util = { path = "../util", version = "5.3.2" } | ||
|
||
[dev-dependencies] | ||
pretty_assertions = "0.6.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "grin_core" | ||
version = "5.3.1" | ||
version = "5.3.2" | ||
authors = ["Grin Developers <[email protected]>"] | ||
description = "Chain implementation for grin, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format." | ||
license = "Apache-2.0" | ||
|
@@ -28,8 +28,8 @@ chrono = { version = "0.4.11", features = ["serde"] } | |
zeroize = { version = "1.1", features =["zeroize_derive"] } | ||
bytes = "0.5" | ||
|
||
keychain = { package = "grin_keychain", path = "../keychain", version = "5.3.1" } | ||
util = { package = "grin_util", path = "../util", version = "5.3.1" } | ||
keychain = { package = "grin_keychain", path = "../keychain", version = "5.3.2" } | ||
util = { package = "grin_util", path = "../util", version = "5.3.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "grin_keychain" | ||
version = "5.3.1" | ||
version = "5.3.2" | ||
authors = ["Grin Developers <[email protected]>"] | ||
description = "Chain implementation for grin, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format." | ||
license = "Apache-2.0" | ||
|
@@ -27,4 +27,4 @@ ripemd160 = "0.9" | |
sha2 = "0.9" | ||
pbkdf2 = "0.8" | ||
|
||
grin_util = { path = "../util", version = "5.3.1" } | ||
grin_util = { path = "../util", version = "5.3.2" } |
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_p2p" | ||
version = "5.3.1" | ||
version = "5.3.2" | ||
authors = ["Grin Developers <[email protected]>"] | ||
description = "Chain implementation for grin, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format." | ||
license = "Apache-2.0" | ||
|
@@ -36,10 +36,10 @@ ed25519-dalek = "1" | |
serde_json = "1" | ||
bytes = "0.5" | ||
|
||
grin_core = { path = "../core", version = "5.3.1" } | ||
grin_store = { path = "../store", version = "5.3.1" } | ||
grin_util = { path = "../util", version = "5.3.1" } | ||
grin_chain = { path = "../chain", version = "5.3.1" } | ||
grin_core = { path = "../core", version = "5.3.2" } | ||
grin_store = { path = "../store", version = "5.3.2" } | ||
grin_util = { path = "../util", version = "5.3.2" } | ||
grin_chain = { path = "../chain", version = "5.3.2" } | ||
|
||
[dev-dependencies] | ||
grin_pool = { path = "../pool", version = "5.3.1" } | ||
grin_pool = { path = "../pool", version = "5.3.2" } |
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_pool" | ||
version = "5.3.1" | ||
version = "5.3.2" | ||
authors = ["Grin Developers <[email protected]>"] | ||
description = "Chain implementation for grin, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format." | ||
license = "Apache-2.0" | ||
|
@@ -19,9 +19,9 @@ log = "0.4" | |
chrono = "0.4.11" | ||
thiserror = "1" | ||
|
||
grin_core = { path = "../core", version = "5.3.1" } | ||
grin_keychain = { path = "../keychain", version = "5.3.1" } | ||
grin_util = { path = "../util", version = "5.3.1" } | ||
grin_core = { path = "../core", version = "5.3.2" } | ||
grin_keychain = { path = "../keychain", version = "5.3.2" } | ||
grin_util = { path = "../util", version = "5.3.2" } | ||
|
||
[dev-dependencies] | ||
grin_chain = { path = "../chain", version = "5.3.1" } | ||
grin_chain = { path = "../chain", version = "5.3.2" } |
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_servers" | ||
version = "5.3.1" | ||
version = "5.3.2" | ||
authors = ["Grin Developers <[email protected]>"] | ||
description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format." | ||
license = "Apache-2.0" | ||
|
@@ -32,14 +32,14 @@ dirs = "1.0.3" | |
timer = "0.2" | ||
atomic_float = "1.0" | ||
|
||
grin_api = { path = "../api", version = "5.3.1" } | ||
grin_chain = { path = "../chain", version = "5.3.1" } | ||
grin_core = { path = "../core", version = "5.3.1" } | ||
grin_keychain = { path = "../keychain", version = "5.3.1" } | ||
grin_p2p = { path = "../p2p", version = "5.3.1" } | ||
grin_pool = { path = "../pool", version = "5.3.1" } | ||
grin_store = { path = "../store", version = "5.3.1" } | ||
grin_util = { path = "../util", version = "5.3.1" } | ||
grin_api = { path = "../api", version = "5.3.2" } | ||
grin_chain = { path = "../chain", version = "5.3.2" } | ||
grin_core = { path = "../core", version = "5.3.2" } | ||
grin_keychain = { path = "../keychain", version = "5.3.2" } | ||
grin_p2p = { path = "../p2p", version = "5.3.2" } | ||
grin_pool = { path = "../pool", version = "5.3.2" } | ||
grin_store = { path = "../store", version = "5.3.2" } | ||
grin_util = { path = "../util", version = "5.3.2" } | ||
|
||
# NOTE. We can't have hyper-rustls the same version for Android and non android. because if how rust builds dependency. | ||
# Android must have v0.20+ | ||
|
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_store" | ||
version = "5.3.1" | ||
version = "5.3.2" | ||
authors = ["Grin Developers <[email protected]>"] | ||
description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format." | ||
license = "Apache-2.0" | ||
|
@@ -21,8 +21,8 @@ serde_derive = "1" | |
thiserror = "1" | ||
log = "0.4" | ||
|
||
grin_core = { path = "../core", version = "5.3.1" } | ||
grin_util = { path = "../util", version = "5.3.1" } | ||
grin_core = { path = "../core", version = "5.3.2" } | ||
grin_util = { path = "../util", version = "5.3.2" } | ||
|
||
[dev-dependencies] | ||
chrono = "0.4.11" | ||
|
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_util" | ||
version = "5.3.1" | ||
version = "5.3.2" | ||
authors = ["Grin Developers <[email protected]>"] | ||
description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format." | ||
license = "Apache-2.0" | ||
|