forked from a16z/magi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
67 lines (59 loc) · 1.53 KB
/
Cargo.toml
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
66
67
[package]
name = "magi"
version = "0.1.0"
license = "AGPL-3.0-only"
edition = "2021"
default-run = "magi"
[[bin]]
name = "magi"
path = "./bin/magi.rs"
[[bin]]
name = "network"
path = "./bin/network.rs"
[dependencies]
tokio = { version = "1.28.0", features = ["full"] }
async-trait = "0.1.64"
eyre = "0.6.8"
ethers = { version = "2.0.8", features = ["optimism"] }
hex = "0.4.3"
libflate = "1.2.0"
openssl = { version = "0.10", features = ["vendored"] }
once_cell = "1"
jsonrpsee = {version = "0.17.0", features = ["server", "macros"]}
futures = "0.3.28"
futures-timer = "0.3.0"
again = "0.1"
# Logging and Metrics
chrono = "0.4.22"
tracing = "0.1.36"
ansi_term = "0.12.1"
tracing-appender = "0.2.2"
tracing-subscriber = { version = "0.3.16", features = [
"fmt",
"env-filter",
"ansi",
"tracing-log",
] }
prometheus_exporter = "0.8.5"
lazy_static = "1.4.0"
# Serialization
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.93"
# Backend Crates
uuid = { version = "1.3.0", features = ["v4"] }
bytes = "1.4.0"
reqwest = "0.11.14"
jsonwebtoken = "8.2.0"
rand = "0.8.5"
# Networking
discv5 = "0.2.2"
libp2p = { version = "0.51.3", features = ["macros", "tokio", "tcp", "mplex", "noise", "gossipsub", "ping"] }
libp2p-identity = { version = "0.1.2", features = ["secp256k1"] }
unsigned-varint = "0.7.1"
snap = "1"
ssz_rs = "0.8.0"
# CLI
figment = { version = "0.10.8", features = ["toml", "env"] }
ctrlc = { version = "3.2.3", features = ["termination"] }
clap = { version = "3.2.18", features = ["derive", "env"] }
dirs = "4.0.0"