-
Notifications
You must be signed in to change notification settings - Fork 992
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bump version to 1.1.0 * remove wallet crate * wallet extracted + mine_block structs * remove wallet doc * remove unnecessary cargo deps * rustfmt * remove wallet from travis matrix * move integration tests into separate crate * rustfmt * move integration crate to wallet
- Loading branch information
1 parent
cbac14c
commit ea4b4fc
Showing
83 changed files
with
465 additions
and
18,562 deletions.
There are no files selected for viewing
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
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 = "1.0.1" | ||
version = "1.1.0" | ||
authors = ["Grin Developers <[email protected]>"] | ||
description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format." | ||
license = "Apache-2.0" | ||
|
@@ -12,7 +12,7 @@ build = "src/build/build.rs" | |
edition = "2018" | ||
|
||
[workspace] | ||
members = ["api", "chain", "config", "core", "keychain", "p2p", "servers", "store", "util", "pool", "wallet"] | ||
members = ["api", "chain", "config", "core", "keychain", "p2p", "servers", "store", "util", "pool"] | ||
exclude = ["etc/gen_gen"] | ||
|
||
[[bin]] | ||
|
@@ -23,25 +23,22 @@ path = "src/bin/grin.rs" | |
blake2-rfc = "0.2" | ||
chrono = "0.4.4" | ||
clap = { version = "2.31", features = ["yaml"] } | ||
rpassword = "2.0.0" | ||
ctrlc = { version = "3.1", features = ["termination"] } | ||
humansize = "1.1.0" | ||
serde = "1" | ||
serde_json = "1" | ||
log = "0.4" | ||
term = "0.5" | ||
linefeed = "0.5" | ||
failure = "0.1" | ||
failure_derive = "0.1" | ||
|
||
grin_api = { path = "./api", version = "1.0.1" } | ||
grin_config = { path = "./config", version = "1.0.1" } | ||
grin_core = { path = "./core", version = "1.0.1" } | ||
grin_keychain = { path = "./keychain", version = "1.0.1" } | ||
grin_p2p = { path = "./p2p", version = "1.0.1" } | ||
grin_servers = { path = "./servers", version = "1.0.1" } | ||
grin_util = { path = "./util", version = "1.0.1" } | ||
grin_wallet = { path = "./wallet", version = "1.0.1" } | ||
grin_api = { path = "./api", version = "1.1.0" } | ||
grin_config = { path = "./config", version = "1.1.0" } | ||
grin_core = { path = "./core", version = "1.1.0" } | ||
grin_keychain = { path = "./keychain", version = "1.1.0" } | ||
grin_p2p = { path = "./p2p", version = "1.1.0" } | ||
grin_servers = { path = "./servers", version = "1.1.0" } | ||
grin_util = { path = "./util", version = "1.1.0" } | ||
|
||
[target.'cfg(windows)'.dependencies] | ||
cursive = { version = "0.10.0", default-features = false, features = ["pancurses-backend"] } | ||
|
@@ -53,10 +50,7 @@ cursive = "0.9.0" | |
|
||
[build-dependencies] | ||
built = "0.3" | ||
reqwest = "0.9" | ||
flate2 = "1.0" | ||
tar = "0.4" | ||
|
||
[dev-dependencies] | ||
grin_chain = { path = "./chain", version = "1.0.1" } | ||
grin_store = { path = "./store", version = "1.0.1" } | ||
grin_chain = { path = "./chain", version = "1.1.0" } | ||
grin_store = { path = "./store", version = "1.1.0" } |
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 = "1.0.1" | ||
version = "1.1.0" | ||
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" | ||
|
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 = "1.0.1" | ||
version = "1.1.0" | ||
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" | ||
|
@@ -22,10 +22,10 @@ serde_derive = "1" | |
chrono = "0.4.4" | ||
lru-cache = "0.1" | ||
|
||
grin_core = { path = "../core", version = "1.0.1" } | ||
grin_keychain = { path = "../keychain", version = "1.0.1" } | ||
grin_store = { path = "../store", version = "1.0.1" } | ||
grin_util = { path = "../util", version = "1.0.1" } | ||
grin_core = { path = "../core", version = "1.1.0" } | ||
grin_keychain = { path = "../keychain", version = "1.1.0" } | ||
grin_store = { path = "../store", version = "1.1.0" } | ||
grin_util = { path = "../util", version = "1.1.0" } | ||
|
||
[dev-dependencies] | ||
env_logger = "0.5" | ||
|
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 = "1.0.1" | ||
version = "1.1.0" | ||
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,11 +16,10 @@ serde_derive = "1" | |
toml = "0.4" | ||
dirs = "1.0.3" | ||
|
||
grin_core = { path = "../core", version = "1.0.1" } | ||
grin_servers = { path = "../servers", version = "1.0.1" } | ||
grin_p2p = { path = "../p2p", version = "1.0.1" } | ||
grin_util = { path = "../util", version = "1.0.1" } | ||
grin_wallet = { path = "../wallet", version = "1.0.1" } | ||
grin_core = { path = "../core", version = "1.1.0" } | ||
grin_servers = { path = "../servers", version = "1.1.0" } | ||
grin_p2p = { path = "../p2p", version = "1.1.0" } | ||
grin_util = { path = "../util", version = "1.1.0" } | ||
|
||
[dev-dependencies] | ||
pretty_assertions = "0.5.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
Oops, something went wrong.