-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use workspace depdencies and common settings
- Loading branch information
Showing
6 changed files
with
62 additions
and
28 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
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,9 +1,13 @@ | ||
[package] | ||
name = "malachite-common" | ||
version = "0.1.0" | ||
edition = "2021" | ||
publish = false | ||
name = "malachite-common" | ||
description = "Common datatypes and interfaces for the Malachite consensus engine" | ||
|
||
version.workspace = true | ||
edition.workspace = true | ||
repository.workspace = true | ||
license.workspace = true | ||
publish.workspace = true | ||
|
||
[dependencies] | ||
secrecy = "0.8.0" | ||
signature = "2.1.0" | ||
secrecy.workspace = true | ||
signature.workspace = true |
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,12 +1,16 @@ | ||
[package] | ||
name = "malachite-consensus" | ||
version = "0.1.0" | ||
edition = "2021" | ||
publish = false | ||
name = "malachite-consensus" | ||
description = "Malachite consensus engine" | ||
|
||
version.workspace = true | ||
edition.workspace = true | ||
repository.workspace = true | ||
license.workspace = true | ||
publish.workspace = true | ||
|
||
[dependencies] | ||
malachite-common = { version = "0.1.0", path = "../common" } | ||
malachite-round = { version = "0.1.0", path = "../round" } | ||
malachite-vote = { version = "0.1.0", path = "../vote" } | ||
|
||
secrecy = "0.8.0" | ||
secrecy.workspace = true |
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,8 +1,12 @@ | ||
[package] | ||
name = "malachite-round" | ||
version = "0.1.0" | ||
edition = "2021" | ||
publish = false | ||
name = "malachite-round" | ||
description = "Per-round state-machine for the Malachite consenss engine" | ||
|
||
version.workspace = true | ||
edition.workspace = true | ||
repository.workspace = true | ||
license.workspace = true | ||
publish.workspace = true | ||
|
||
[dependencies] | ||
malachite-common = { version = "0.1.0", path = "../common" } |
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,17 +1,21 @@ | ||
[package] | ||
name = "malachite-test" | ||
version = "0.1.0" | ||
edition = "2021" | ||
publish = false | ||
name = "malachite-test" | ||
description = "Testing framework for the Malachite consensus engine" | ||
publish = false | ||
|
||
version.workspace = true | ||
edition.workspace = true | ||
repository.workspace = true | ||
license.workspace = true | ||
|
||
[dependencies] | ||
malachite-common = { version = "0.1.0", path = "../common" } | ||
malachite-consensus = { version = "0.1.0", path = "../consensus" } | ||
malachite-round = { version = "0.1.0", path = "../round" } | ||
malachite-vote = { version = "0.1.0", path = "../vote" } | ||
|
||
ed25519-consensus = "2.1.0" | ||
signature = "2.1.0" | ||
rand = { version = "0.8.5", features = ["std_rng"] } | ||
sha2 = "0.10.8" | ||
secrecy = "0.8.0" | ||
ed25519-consensus.workspace = true | ||
signature.workspace = true | ||
rand.workspace = true | ||
sha2.workspace = true | ||
secrecy.workspace = true |
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,8 +1,12 @@ | ||
[package] | ||
name = "malachite-vote" | ||
version = "0.1.0" | ||
edition = "2021" | ||
publish = false | ||
name = "malachite-vote" | ||
description = "Voting system for the Malachite consensus engine" | ||
|
||
version.workspace = true | ||
edition.workspace = true | ||
repository.workspace = true | ||
license.workspace = true | ||
publish.workspace = true | ||
|
||
[dependencies] | ||
malachite-common = { version = "0.1.0", path = "../common" } |