forked from SeismicSystems/summit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
65 lines (57 loc) · 1.62 KB
/
Cargo.toml
File metadata and controls
65 lines (57 loc) · 1.62 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[workspace]
members = [ "application", "node", "rpc", "types", "syncer"]
resolver = "3"
[workspace.package]
version = "0.0.0"
edition = "2024"
[workspace.dependencies]
# Our crates
summit-types = { path = "types" }
summit-application = { path = "application" }
summit-syncer = {path = "syncer"}
commonware-consensus = "0.0.58"
commonware-cryptography = "0.0.58"
commonware-storage = "0.0.58"
commonware-runtime = "0.0.58"
commonware-codec = "0.0.58"
commonware-p2p = "0.0.58"
commonware-broadcast = "0.0.58"
commonware-utils = "0.0.58"
commonware-resolver = "0.0.58"
commonware-macros = "0.0.58"
alloy-consensus = "1.0.12"
alloy-eips = { version = "1.0.19", features = ["ssz"] }
alloy-network = "1.0.9"
alloy-node-bindings = "1.0.9"
alloy-rpc-client = { version = "1.0.9", features = [
"hyper",
"alloy-transport-http",
] }
alloy-rpc-types = "1.0.9"
alloy-rpc-types-engine = { version = "1.0.9", features = ["serde", "ssz"] }
alloy-signer = "1.0.9"
alloy-signer-local = "1.0.9"
alloy-transport-http = { version = "1.0.9", features = ["hyper", "jwt-auth"] }
alloy-provider = { version = "1.0.9", features = ["hyper", "engine-api","ipc"] }
alloy-primitives = "1.2.1"
alloy-transport-ipc = { version = "1.0.9" }
futures = "0.3.31"
http = "1.0"
http-body-util = "0.1.3"
reqwest = "0.12"
socket2 = "0.6"
tower = "0.5.2"
tokio = "1.46.0"
ethereum_ssz = "0.9.0"
ethereum_ssz_derive = "0.9.0"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
toml = "0.9"
anyhow = "1.0.98"
eyre = "0.6"
bytes = "1.10.1"
clap = { version = "4.5.40", features = ["derive"] }
dirs = "6.0.0"
governor = "0.6.3"
rand = "0.8.5"
tracing = "0.1.41"