Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
114 changes: 57 additions & 57 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 11 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grin"
version = "2.1.1-beta.1"
version = "2.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"
Expand Down Expand Up @@ -32,14 +32,14 @@ term = "0.5"
failure = "0.1"
failure_derive = "0.1"

grin_api = { path = "./api", version = "2.1.1-beta.1" }
grin_config = { path = "./config", version = "2.1.1-beta.1" }
grin_chain = { path = "./chain", version = "2.1.1-beta.1" }
grin_core = { path = "./core", version = "2.1.1-beta.1" }
grin_keychain = { path = "./keychain", version = "2.1.1-beta.1" }
grin_p2p = { path = "./p2p", version = "2.1.1-beta.1" }
grin_servers = { path = "./servers", version = "2.1.1-beta.1" }
grin_util = { path = "./util", version = "2.1.1-beta.1" }
grin_api = { path = "./api", version = "2.1.1" }
grin_config = { path = "./config", version = "2.1.1" }
grin_chain = { path = "./chain", version = "2.1.1" }
grin_core = { path = "./core", version = "2.1.1" }
grin_keychain = { path = "./keychain", version = "2.1.1" }
grin_p2p = { path = "./p2p", version = "2.1.1" }
grin_servers = { path = "./servers", version = "2.1.1" }
grin_util = { path = "./util", version = "2.1.1" }

[target.'cfg(windows)'.dependencies]
cursive = { version = "0.12", default-features = false, features = ["pancurses-backend"] }
Expand All @@ -53,5 +53,5 @@ cursive = "0.12"
built = "0.3"

[dev-dependencies]
grin_chain = { path = "./chain", version = "2.1.1-beta.1" }
grin_store = { path = "./store", version = "2.1.1-beta.1" }
grin_chain = { path = "./chain", version = "2.1.1" }
grin_store = { path = "./store", version = "2.1.1" }
14 changes: 7 additions & 7 deletions api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grin_api"
version = "2.1.1-beta.1"
version = "2.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"
Expand Down Expand Up @@ -31,9 +31,9 @@ futures = "0.1.21"
rustls = "0.13"
url = "1.7.0"

grin_core = { path = "../core", version = "2.1.1-beta.1" }
grin_chain = { path = "../chain", version = "2.1.1-beta.1" }
grin_p2p = { path = "../p2p", version = "2.1.1-beta.1" }
grin_pool = { path = "../pool", version = "2.1.1-beta.1" }
grin_store = { path = "../store", version = "2.1.1-beta.1" }
grin_util = { path = "../util", version = "2.1.1-beta.1" }
grin_core = { path = "../core", version = "2.1.1" }
grin_chain = { path = "../chain", version = "2.1.1" }
grin_p2p = { path = "../p2p", version = "2.1.1" }
grin_pool = { path = "../pool", version = "2.1.1" }
grin_store = { path = "../store", version = "2.1.1" }
grin_util = { path = "../util", version = "2.1.1" }
10 changes: 5 additions & 5 deletions chain/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grin_chain"
version = "2.1.1-beta.1"
version = "2.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"
Expand All @@ -23,10 +23,10 @@ lru-cache = "0.1"
lazy_static = "1"
regex = "1"

grin_core = { path = "../core", version = "2.1.1-beta.1" }
grin_keychain = { path = "../keychain", version = "2.1.1-beta.1" }
grin_store = { path = "../store", version = "2.1.1-beta.1" }
grin_util = { path = "../util", version = "2.1.1-beta.1" }
grin_core = { path = "../core", version = "2.1.1" }
grin_keychain = { path = "../keychain", version = "2.1.1" }
grin_store = { path = "../store", version = "2.1.1" }
grin_util = { path = "../util", version = "2.1.1" }

[dev-dependencies]
env_logger = "0.5"
Expand Down
10 changes: 5 additions & 5 deletions config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grin_config"
version = "2.1.1-beta.1"
version = "2.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"
Expand All @@ -16,10 +16,10 @@ serde_derive = "1"
toml = "0.4"
dirs = "1.0.3"

grin_core = { path = "../core", version = "2.1.1-beta.1" }
grin_servers = { path = "../servers", version = "2.1.1-beta.1" }
grin_p2p = { path = "../p2p", version = "2.1.1-beta.1" }
grin_util = { path = "../util", version = "2.1.1-beta.1" }
grin_core = { path = "../core", version = "2.1.1" }
grin_servers = { path = "../servers", version = "2.1.1" }
grin_p2p = { path = "../p2p", version = "2.1.1" }
grin_util = { path = "../util", version = "2.1.1" }

[dev-dependencies]
pretty_assertions = "0.5.1"
6 changes: 3 additions & 3 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grin_core"
version = "2.1.1-beta.1"
version = "2.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"
Expand Down Expand Up @@ -29,8 +29,8 @@ log = "0.4"
chrono = { version = "0.4.4", features = ["serde"] }
zeroize = "0.9"

grin_keychain = { path = "../keychain", version = "2.1.1-beta.1" }
grin_util = { path = "../util", version = "2.1.1-beta.1" }
grin_keychain = { path = "../keychain", version = "2.1.1" }
grin_util = { path = "../util", version = "2.1.1" }

[dev-dependencies]
serde_json = "1"
4 changes: 2 additions & 2 deletions keychain/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grin_keychain"
version = "2.1.1-beta.1"
version = "2.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"
Expand All @@ -27,4 +27,4 @@ ripemd160 = "0.7"
sha2 = "0.7"
pbkdf2 = "0.2"

grin_util = { path = "../util", version = "2.1.1-beta.1" }
grin_util = { path = "../util", version = "2.1.1" }
Loading