-
Notifications
You must be signed in to change notification settings - Fork 153
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3edfd27
commit 3f88acb
Showing
7 changed files
with
28 additions
and
28 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 = "grin_miner" | ||
version = "0.5.0" | ||
version = "0.5.1" | ||
authors = ["Grin Developers <[email protected]>"] | ||
description = "Mining software for Grin, supports CPU and CUDA GPUs." | ||
build = "src/build/build.rs" | ||
|
@@ -32,13 +32,13 @@ slog = { version = "~2.1", features = ["max_level_trace", "release_max_level_tra | |
term = "0.4" | ||
time = "0.1" | ||
|
||
grin_miner_util = { path = "./util", version = "0.5.0" } | ||
grin_miner_plugin = { path = "./plugin", version = "0.5.0" } | ||
grin_miner_config = { path = "./config", version = "0.5.0" } | ||
cuckoo_miner = { path = "./cuckoo-miner", version = "0.5.0" } | ||
grin_miner_util = { path = "./util", version = "0.5.1" } | ||
grin_miner_plugin = { path = "./plugin", version = "0.5.1" } | ||
grin_miner_config = { path = "./config", version = "0.5.1" } | ||
cuckoo_miner = { path = "./cuckoo-miner", version = "0.5.1" } | ||
#use this alternative inclusion below to build cuda plugins | ||
#cuckoo_miner = { path = "./cuckoo-miner", version = "0.5.0", features = ["build-cuda-plugins"]} | ||
ocl_cuckatoo = { path = "./ocl_cuckatoo", version = "0.5.0", optional = true} | ||
#cuckoo_miner = { path = "./cuckoo-miner", version = "0.5.1", features = ["build-cuda-plugins"]} | ||
ocl_cuckatoo = { path = "./ocl_cuckatoo", version = "0.5.1", optional = true} | ||
|
||
[dependencies.cursive] | ||
version = "0.9.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_miner_config" | ||
version = "0.5.0" | ||
version = "0.5.1" | ||
authors = ["Grin Developers <[email protected]>"] | ||
description = "Configuration handling for the grin miner" | ||
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
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 = "ocl_cuckatoo" | ||
version = "0.5.0" | ||
version = "0.5.1" | ||
workspace = ".." | ||
|
||
[dependencies] | ||
|
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_miner_plugin" | ||
version = "0.5.0" | ||
version = "0.5.1" | ||
authors = ["Grin Developers <[email protected]>"] | ||
repository = "https://github.com/mimblewimble/grin-miner" | ||
description = "Device specific plugins for the grin miner" | ||
|
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_miner_util" | ||
version = "0.5.0" | ||
version = "0.5.1" | ||
authors = ["Grin Developers <[email protected]>"] | ||
description = "Utilities for the grin miner" | ||
repository = "https://github.com/mimblewimble/grin-miner" | ||
|