-
Notifications
You must be signed in to change notification settings - Fork 990
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[current/v5.3.x] 5.3.x Version of Rust 1.80 updates (#3797)
* Update grin_secp to 0.7.14 (#3788) * Update versioning on master to 5.4.0-alpha.0 * Update versioning on master to 5.4.0-alpha.0 (#3789) * Remove Merkle Proof Generation from Foreign API `get_outputs` (#3792) * Update versioning on master to 5.4.0-alpha.0 * Remove merkle proof generation from foreign API * Rust 1.80+ fixes & accumulated warning cleanup (#3796) * Update versioning on master to 5.4.0-alpha.0 * updates for 1.80 and other accumulated warnings * further warning cleanups * move dead code tag to function defn rather than module * Chain type field (#3790) * Adding chain type field into get_status rpc * formatting * update version for next build --------- Co-authored-by: aglkm <[email protected]>
- Loading branch information
1 parent
7f7d063
commit bd98d17
Showing
28 changed files
with
682 additions
and
569 deletions.
There are no files selected for viewing
File renamed without changes.
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" | ||
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" | ||
|
@@ -24,31 +24,31 @@ blake2-rfc = "0.2" | |
chrono = "0.4.11" | ||
clap = { version = "2.33", features = ["yaml"] } | ||
ctrlc = { version = "3.1", features = ["termination"] } | ||
cursive_table_view = "0.14.0" | ||
cursive_table_view = "0.15.0" | ||
humansize = "1.1.0" | ||
serde = "1" | ||
futures = "0.3.19" | ||
serde_json = "1" | ||
log = "0.4" | ||
term = "0.6" | ||
|
||
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" } | ||
grin_api = { path = "./api", version = "5.3.3" } | ||
grin_config = { path = "./config", version = "5.3.3" } | ||
grin_chain = { path = "./chain", version = "5.3.3" } | ||
grin_core = { path = "./core", version = "5.3.3" } | ||
grin_keychain = { path = "./keychain", version = "5.3.3" } | ||
grin_p2p = { path = "./p2p", version = "5.3.3" } | ||
grin_servers = { path = "./servers", version = "5.3.3" } | ||
grin_util = { path = "./util", version = "5.3.3" } | ||
|
||
[dependencies.cursive] | ||
version = "0.20" | ||
version = "0.21" | ||
default-features = false | ||
features = ["pancurses-backend"] | ||
|
||
[build-dependencies] | ||
built = { version = "0.4", features = ["git2"]} | ||
built = { version = "0.7", features = ["git2"]} | ||
|
||
[dev-dependencies] | ||
grin_chain = { path = "./chain", version = "5.3.2" } | ||
grin_store = { path = "./store", version = "5.3.2" } | ||
grin_chain = { path = "./chain", version = "5.3.3" } | ||
grin_store = { path = "./store", version = "5.3.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_api" | ||
version = "5.3.2" | ||
version = "5.3.3" | ||
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,9 +30,9 @@ rustls = "0.17" | |
url = "2.1" | ||
bytes = "0.5" | ||
|
||
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" } | ||
grin_core = { path = "../core", version = "5.3.3" } | ||
grin_chain = { path = "../chain", version = "5.3.3" } | ||
grin_p2p = { path = "../p2p", version = "5.3.3" } | ||
grin_pool = { path = "../pool", version = "5.3.3" } | ||
grin_store = { path = "../store", version = "5.3.3" } | ||
grin_util = { path = "../util", version = "5.3.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
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_chain" | ||
version = "5.3.2" | ||
version = "5.3.3" | ||
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.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" } | ||
grin_core = { path = "../core", version = "5.3.3" } | ||
grin_keychain = { path = "../keychain", version = "5.3.3" } | ||
grin_store = { path = "../store", version = "5.3.3" } | ||
grin_util = { path = "../util", version = "5.3.3" } | ||
|
||
[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
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.2" | ||
version = "5.3.3" | ||
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" | ||
|
@@ -16,10 +16,10 @@ serde_derive = "1" | |
toml = "0.5" | ||
dirs = "2.0" | ||
|
||
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" } | ||
grin_core = { path = "../core", version = "5.3.3" } | ||
grin_servers = { path = "../servers", version = "5.3.3" } | ||
grin_p2p = { path = "../p2p", version = "5.3.3" } | ||
grin_util = { path = "../util", version = "5.3.3" } | ||
|
||
[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.2" | ||
version = "5.3.3" | ||
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.2" } | ||
util = { package = "grin_util", path = "../util", version = "5.3.2" } | ||
keychain = { package = "grin_keychain", path = "../keychain", version = "5.3.3" } | ||
util = { package = "grin_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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "grin_keychain" | ||
version = "5.3.2" | ||
version = "5.3.3" | ||
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" | ||
|
@@ -26,4 +26,4 @@ ripemd160 = "0.9" | |
sha2 = "0.9" | ||
pbkdf2 = "0.8" | ||
|
||
grin_util = { path = "../util", version = "5.3.2" } | ||
grin_util = { path = "../util", version = "5.3.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
Oops, something went wrong.