diff options
Diffstat (limited to 'consensus/Cargo.toml')
| -rw-r--r-- | consensus/Cargo.toml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/consensus/Cargo.toml b/consensus/Cargo.toml new file mode 100644 index 0000000..c9d280e --- /dev/null +++ b/consensus/Cargo.toml @@ -0,0 +1,18 @@ +[package] +name = "onioncoin-consensus" +version.workspace = true +edition.workspace = true +authors.workspace = true +license.workspace = true + +[dependencies] +onioncoin-core = { path = "../core" } +onioncoin-crypto = { path = "../crypto" } + +serde.workspace = true +serde_json.workspace = true +serde_bytes.workspace = true +blake3.workspace = true +chrono.workspace = true +rand.workspace = true +thiserror.workspace = true |
