mirror of
https://github.com/mimblewimble/grin.git
synced 2025-01-20 19:11:08 +03:00
Tagging v5.1.1 release (#3651)
This commit is contained in:
parent
172143f7ea
commit
11e5efc089
12 changed files with 68 additions and 68 deletions
22
Cargo.lock
generated
22
Cargo.lock
generated
|
@ -931,7 +931,7 @@ checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
|
|||
|
||||
[[package]]
|
||||
name = "grin"
|
||||
version = "5.2.0-alpha.1"
|
||||
version = "5.1.1"
|
||||
dependencies = [
|
||||
"blake2-rfc",
|
||||
"built",
|
||||
|
@ -960,7 +960,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "grin_api"
|
||||
version = "5.2.0-alpha.1"
|
||||
version = "5.1.1"
|
||||
dependencies = [
|
||||
"bytes",
|
||||
"easy-jsonrpc-mw",
|
||||
|
@ -992,7 +992,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "grin_chain"
|
||||
version = "5.2.0-alpha.1"
|
||||
version = "5.1.1"
|
||||
dependencies = [
|
||||
"bit-vec",
|
||||
"bitflags 1.2.1",
|
||||
|
@ -1017,7 +1017,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "grin_config"
|
||||
version = "5.2.0-alpha.1"
|
||||
version = "5.1.1"
|
||||
dependencies = [
|
||||
"dirs",
|
||||
"grin_core",
|
||||
|
@ -1033,7 +1033,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "grin_core"
|
||||
version = "5.2.0-alpha.1"
|
||||
version = "5.1.1"
|
||||
dependencies = [
|
||||
"blake2-rfc",
|
||||
"byteorder",
|
||||
|
@ -1060,7 +1060,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "grin_keychain"
|
||||
version = "5.2.0-alpha.1"
|
||||
version = "5.1.1"
|
||||
dependencies = [
|
||||
"blake2-rfc",
|
||||
"byteorder",
|
||||
|
@ -1081,7 +1081,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "grin_p2p"
|
||||
version = "5.2.0-alpha.1"
|
||||
version = "5.1.1"
|
||||
dependencies = [
|
||||
"bitflags 1.2.1",
|
||||
"bytes",
|
||||
|
@ -1103,7 +1103,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "grin_pool"
|
||||
version = "5.2.0-alpha.1"
|
||||
version = "5.1.1"
|
||||
dependencies = [
|
||||
"blake2-rfc",
|
||||
"chrono",
|
||||
|
@ -1137,7 +1137,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "grin_servers"
|
||||
version = "5.2.0-alpha.1"
|
||||
version = "5.1.1"
|
||||
dependencies = [
|
||||
"chrono",
|
||||
"fs2",
|
||||
|
@ -1166,7 +1166,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "grin_store"
|
||||
version = "5.2.0-alpha.1"
|
||||
version = "5.1.1"
|
||||
dependencies = [
|
||||
"byteorder",
|
||||
"chrono",
|
||||
|
@ -1189,7 +1189,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "grin_util"
|
||||
version = "5.2.0-alpha.1"
|
||||
version = "5.1.1"
|
||||
dependencies = [
|
||||
"backtrace",
|
||||
"base64 0.12.1",
|
||||
|
|
22
Cargo.toml
22
Cargo.toml
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "grin"
|
||||
version = "5.2.0-alpha.1"
|
||||
version = "5.1.1"
|
||||
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
|
||||
description = "Simple, private and scalable cryptocurrency implementation based on the Mimblewimble chain format."
|
||||
license = "Apache-2.0"
|
||||
|
@ -33,14 +33,14 @@ term = "0.6"
|
|||
failure = "0.1"
|
||||
failure_derive = "0.1"
|
||||
|
||||
grin_api = { path = "./api", version = "5.2.0-alpha.1" }
|
||||
grin_config = { path = "./config", version = "5.2.0-alpha.1" }
|
||||
grin_chain = { path = "./chain", version = "5.2.0-alpha.1" }
|
||||
grin_core = { path = "./core", version = "5.2.0-alpha.1" }
|
||||
grin_keychain = { path = "./keychain", version = "5.2.0-alpha.1" }
|
||||
grin_p2p = { path = "./p2p", version = "5.2.0-alpha.1" }
|
||||
grin_servers = { path = "./servers", version = "5.2.0-alpha.1" }
|
||||
grin_util = { path = "./util", version = "5.2.0-alpha.1" }
|
||||
grin_api = { path = "./api", version = "5.1.1" }
|
||||
grin_config = { path = "./config", version = "5.1.1" }
|
||||
grin_chain = { path = "./chain", version = "5.1.1" }
|
||||
grin_core = { path = "./core", version = "5.1.1" }
|
||||
grin_keychain = { path = "./keychain", version = "5.1.1" }
|
||||
grin_p2p = { path = "./p2p", version = "5.1.1" }
|
||||
grin_servers = { path = "./servers", version = "5.1.1" }
|
||||
grin_util = { path = "./util", version = "5.1.1" }
|
||||
|
||||
[dependencies.cursive]
|
||||
version = "0.16"
|
||||
|
@ -51,5 +51,5 @@ features = ["pancurses-backend"]
|
|||
built = { version = "0.4", features = ["git2"]}
|
||||
|
||||
[dev-dependencies]
|
||||
grin_chain = { path = "./chain", version = "5.2.0-alpha.1" }
|
||||
grin_store = { path = "./store", version = "5.2.0-alpha.1" }
|
||||
grin_chain = { path = "./chain", version = "5.1.1" }
|
||||
grin_store = { path = "./store", version = "5.1.1" }
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "grin_api"
|
||||
version = "5.2.0-alpha.1"
|
||||
version = "5.1.1"
|
||||
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
|
||||
description = "APIs for grin, a simple, private and scalable cryptocurrency implementation based on the Mimblewimble chain format."
|
||||
license = "Apache-2.0"
|
||||
|
@ -31,9 +31,9 @@ rustls = "0.17"
|
|||
url = "2.1"
|
||||
bytes = "0.5"
|
||||
|
||||
grin_core = { path = "../core", version = "5.2.0-alpha.1" }
|
||||
grin_chain = { path = "../chain", version = "5.2.0-alpha.1" }
|
||||
grin_p2p = { path = "../p2p", version = "5.2.0-alpha.1" }
|
||||
grin_pool = { path = "../pool", version = "5.2.0-alpha.1" }
|
||||
grin_store = { path = "../store", version = "5.2.0-alpha.1" }
|
||||
grin_util = { path = "../util", version = "5.2.0-alpha.1" }
|
||||
grin_core = { path = "../core", version = "5.1.1" }
|
||||
grin_chain = { path = "../chain", version = "5.1.1" }
|
||||
grin_p2p = { path = "../p2p", version = "5.1.1" }
|
||||
grin_pool = { path = "../pool", version = "5.1.1" }
|
||||
grin_store = { path = "../store", version = "5.1.1" }
|
||||
grin_util = { path = "../util", version = "5.1.1" }
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "grin_chain"
|
||||
version = "5.2.0-alpha.1"
|
||||
version = "5.1.1"
|
||||
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
|
||||
description = "Chain implementation for grin, a simple, private and scalable cryptocurrency implementation based on the Mimblewimble chain format."
|
||||
license = "Apache-2.0"
|
||||
|
@ -24,10 +24,10 @@ chrono = "0.4.11"
|
|||
lru-cache = "0.1"
|
||||
lazy_static = "1"
|
||||
|
||||
grin_core = { path = "../core", version = "5.2.0-alpha.1" }
|
||||
grin_keychain = { path = "../keychain", version = "5.2.0-alpha.1" }
|
||||
grin_store = { path = "../store", version = "5.2.0-alpha.1" }
|
||||
grin_util = { path = "../util", version = "5.2.0-alpha.1" }
|
||||
grin_core = { path = "../core", version = "5.1.1" }
|
||||
grin_keychain = { path = "../keychain", version = "5.1.1" }
|
||||
grin_store = { path = "../store", version = "5.1.1" }
|
||||
grin_util = { path = "../util", version = "5.1.1" }
|
||||
|
||||
[dev-dependencies]
|
||||
env_logger = "0.7"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "grin_config"
|
||||
version = "5.2.0-alpha.1"
|
||||
version = "5.1.1"
|
||||
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
|
||||
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.2.0-alpha.1" }
|
||||
grin_servers = { path = "../servers", version = "5.2.0-alpha.1" }
|
||||
grin_p2p = { path = "../p2p", version = "5.2.0-alpha.1" }
|
||||
grin_util = { path = "../util", version = "5.2.0-alpha.1" }
|
||||
grin_core = { path = "../core", version = "5.1.1" }
|
||||
grin_servers = { path = "../servers", version = "5.1.1" }
|
||||
grin_p2p = { path = "../p2p", version = "5.1.1" }
|
||||
grin_util = { path = "../util", version = "5.1.1" }
|
||||
|
||||
[dev-dependencies]
|
||||
pretty_assertions = "0.6.1"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "grin_core"
|
||||
version = "5.2.0-alpha.1"
|
||||
version = "5.1.1"
|
||||
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
|
||||
description = "Chain implementation for grin, a simple, private and scalable cryptocurrency implementation based on the Mimblewimble chain format."
|
||||
license = "Apache-2.0"
|
||||
|
@ -29,8 +29,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.2.0-alpha.1" }
|
||||
util = { package = "grin_util", path = "../util", version = "5.2.0-alpha.1" }
|
||||
keychain = { package = "grin_keychain", path = "../keychain", version = "5.1.1" }
|
||||
util = { package = "grin_util", path = "../util", version = "5.1.1" }
|
||||
|
||||
[dev-dependencies]
|
||||
serde_json = "1"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "grin_keychain"
|
||||
version = "5.2.0-alpha.1"
|
||||
version = "5.1.1"
|
||||
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
|
||||
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.7"
|
|||
sha2 = "0.7"
|
||||
pbkdf2 = "0.2"
|
||||
|
||||
grin_util = { path = "../util", version = "5.2.0-alpha.1" }
|
||||
grin_util = { path = "../util", version = "5.1.1" }
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "grin_p2p"
|
||||
version = "5.2.0-alpha.1"
|
||||
version = "5.1.1"
|
||||
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
|
||||
description = "Chain implementation for grin, a simple, private and scalable cryptocurrency implementation based on the Mimblewimble chain format."
|
||||
license = "Apache-2.0"
|
||||
|
@ -22,10 +22,10 @@ log = "0.4"
|
|||
chrono = { version = "0.4.11", features = ["serde"] }
|
||||
bytes = "0.5"
|
||||
|
||||
grin_core = { path = "../core", version = "5.2.0-alpha.1" }
|
||||
grin_store = { path = "../store", version = "5.2.0-alpha.1" }
|
||||
grin_util = { path = "../util", version = "5.2.0-alpha.1" }
|
||||
grin_chain = { path = "../chain", version = "5.2.0-alpha.1" }
|
||||
grin_core = { path = "../core", version = "5.1.1" }
|
||||
grin_store = { path = "../store", version = "5.1.1" }
|
||||
grin_util = { path = "../util", version = "5.1.1" }
|
||||
grin_chain = { path = "../chain", version = "5.1.1" }
|
||||
|
||||
[dev-dependencies]
|
||||
grin_pool = { path = "../pool", version = "5.2.0-alpha.1" }
|
||||
grin_pool = { path = "../pool", version = "5.1.1" }
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "grin_pool"
|
||||
version = "5.2.0-alpha.1"
|
||||
version = "5.1.1"
|
||||
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
|
||||
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 @@ chrono = "0.4.11"
|
|||
failure = "0.1"
|
||||
failure_derive = "0.1"
|
||||
|
||||
grin_core = { path = "../core", version = "5.2.0-alpha.1" }
|
||||
grin_keychain = { path = "../keychain", version = "5.2.0-alpha.1" }
|
||||
grin_util = { path = "../util", version = "5.2.0-alpha.1" }
|
||||
grin_core = { path = "../core", version = "5.1.1" }
|
||||
grin_keychain = { path = "../keychain", version = "5.1.1" }
|
||||
grin_util = { path = "../util", version = "5.1.1" }
|
||||
|
||||
[dev-dependencies]
|
||||
grin_chain = { path = "../chain", version = "5.2.0-alpha.1" }
|
||||
grin_chain = { path = "../chain", version = "5.1.1" }
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "grin_servers"
|
||||
version = "5.2.0-alpha.1"
|
||||
version = "5.1.1"
|
||||
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
|
||||
description = "Simple, private and scalable cryptocurrency implementation based on the Mimblewimble chain format."
|
||||
license = "Apache-2.0"
|
||||
|
@ -26,11 +26,11 @@ tokio = {version = "0.2", features = ["full"] }
|
|||
tokio-util = { version = "0.2", features = ["codec"] }
|
||||
walkdir = "2.3.1"
|
||||
|
||||
grin_api = { path = "../api", version = "5.2.0-alpha.1" }
|
||||
grin_chain = { path = "../chain", version = "5.2.0-alpha.1" }
|
||||
grin_core = { path = "../core", version = "5.2.0-alpha.1" }
|
||||
grin_keychain = { path = "../keychain", version = "5.2.0-alpha.1" }
|
||||
grin_p2p = { path = "../p2p", version = "5.2.0-alpha.1" }
|
||||
grin_pool = { path = "../pool", version = "5.2.0-alpha.1" }
|
||||
grin_store = { path = "../store", version = "5.2.0-alpha.1" }
|
||||
grin_util = { path = "../util", version = "5.2.0-alpha.1" }
|
||||
grin_api = { path = "../api", version = "5.1.1" }
|
||||
grin_chain = { path = "../chain", version = "5.1.1" }
|
||||
grin_core = { path = "../core", version = "5.1.1" }
|
||||
grin_keychain = { path = "../keychain", version = "5.1.1" }
|
||||
grin_p2p = { path = "../p2p", version = "5.1.1" }
|
||||
grin_pool = { path = "../pool", version = "5.1.1" }
|
||||
grin_store = { path = "../store", version = "5.1.1" }
|
||||
grin_util = { path = "../util", version = "5.1.1" }
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "grin_store"
|
||||
version = "5.2.0-alpha.1"
|
||||
version = "5.1.1"
|
||||
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
|
||||
description = "Simple, private and scalable cryptocurrency implementation based on the Mimblewimble chain format."
|
||||
license = "Apache-2.0"
|
||||
|
@ -22,8 +22,8 @@ serde = "1"
|
|||
serde_derive = "1"
|
||||
log = "0.4"
|
||||
|
||||
grin_core = { path = "../core", version = "5.2.0-alpha.1" }
|
||||
grin_util = { path = "../util", version = "5.2.0-alpha.1" }
|
||||
grin_core = { path = "../core", version = "5.1.1" }
|
||||
grin_util = { path = "../util", version = "5.1.1" }
|
||||
|
||||
[dev-dependencies]
|
||||
chrono = "0.4.11"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "grin_util"
|
||||
version = "5.2.0-alpha.1"
|
||||
version = "5.1.1"
|
||||
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
|
||||
description = "Simple, private and scalable cryptocurrency implementation based on the Mimblewimble chain format."
|
||||
license = "Apache-2.0"
|
||||
|
|
Loading…
Reference in a new issue