Skip to content

Commit ea90ef3

Browse files
Merge pull request #114 from catalyst-network/core-functionality
Added network crate
2 parents f233687 + 967bf67 commit ea90ef3

File tree

19 files changed

+8180
-797
lines changed

19 files changed

+8180
-797
lines changed

Cargo.lock

Lines changed: 47 additions & 288 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/catalyst-consensus/Cargo.toml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ description = "4-Phase Collaborative Consensus for Catalyst Network"
66
license = "MIT OR Apache-2.0"
77

88
[dependencies]
9-
catalyst-core = { path = "../catalyst-core" }
10-
catalyst-crypto = { path = "../catalyst-crypto" }
9+
# Core Catalyst dependencies
1110
catalyst-network = { path = "../catalyst-network" }
12-
catalyst-utils = { path = "../catalyst-utils" }
13-
rand = "0.8"
11+
catalyst-crypto = { path = "../catalyst-crypto" }
12+
# catalyst-utils = { path = "../catalyst-utils" } # Add when available
13+
# catalyst-config = { path = "../catalyst-config" } # Add when available
1414

1515
# Async support
1616
tokio = { version = "1.0", features = ["full"] }
@@ -25,9 +25,14 @@ serde_json = "1.0"
2525
thiserror = "1.0"
2626
anyhow = "1.0"
2727

28-
# Utilities
28+
29+
# Logging
2930
tracing = "0.1"
31+
32+
# Utilities
3033
uuid = { version = "1.0", features = ["v4"] }
34+
hex = "0.4"
35+
rand = "0.8"
3136

3237
[dev-dependencies]
3338
tokio-test = "0.4"

0 commit comments

Comments
 (0)