-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (42 loc) · 1.53 KB
/
Cargo.toml
File metadata and controls
47 lines (42 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[workspace]
members = [
"fifo-mempool",
"libp2p-network",
"host-integration"
]
resolver = "2"
[workspace.dependencies]
anyhow = "1.0"
async-trait = "0.1.88"
bytesize = "1.0"
eyre = "0.6"
futures = "0.3"
libp2p = { version = "0.56.0", features = ["macros", "identify", "tokio", "ed25519", "ecdsa", "tcp", "quic", "noise", "yamux", "gossipsub", "dns", "ping", "metrics", "request-response", "cbor", "serde", "kad"] }
libp2p-gossipsub = { version = "0.49.0", features = ["metrics"] }
libp2p-identity = "0.2.12"
prometheus = "0.13"
prometheus-client = "0.23"
prost = "0.13"
prost-build = "0.13"
prost-types = "0.13"
protox = "0.8.0"
ractor = { version = "0.14.6", default-features = false, features = ["async-trait", "tokio_runtime"] }
seahash = "4.1"
serde = "1.0"
sha2 = "0.10"
thiserror = "2.0"
tokio = { version = "1.46.1", features = ["full", "test-util"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
[workspace.dependencies.malachitebft-proto]
git = "https://github.com/informalsystems/malachite.git"
branch = "anca/actor_with_fifo_mempool"
package = "informalsystems-malachitebft-proto"
[workspace.dependencies.malachitebft-metrics]
git = "https://github.com/informalsystems/malachite.git"
branch = "anca/actor_with_fifo_mempool"
package = "informalsystems-malachitebft-metrics"
[workspace.dependencies.malachitebft-config]
git = "https://github.com/informalsystems/malachite.git"
branch = "anca/actor_with_fifo_mempool"
package = "informalsystems-malachitebft-config"