forked from succinctlabs/vectorx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
99 lines (84 loc) · 2.65 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[package]
name = "vectorx"
version = "0.1.0"
edition = "2021"
[lib]
path = "circuits/lib.rs"
[[bin]]
name = "dummy_header_range"
path = "bin/dummy_header_range.rs"
[[bin]]
name = "dummy_rotate"
path = "bin/dummy_rotate.rs"
[[bin]]
name = "header_range"
path = "bin/header_range.rs"
[[bin]]
name = "rotate"
path = "bin/rotate.rs"
[[bin]]
name = "vectorx"
path = "bin/vectorx.rs"
[[bin]]
name = "genesis"
path = "bin/genesis.rs"
[[bin]]
name = "indexer"
path = "bin/indexer.rs"
[[bin]]
name = "events"
path = "bin/events.rs"
[[bin]]
name = "fill_block_range"
path = "bin/fill_block_range.rs"
[features]
ci = []
[dependencies]
env_logger = { version = "0.9.0", default-features = false }
ed25519-dalek = "1.0.1"
hex = "0.4.3"
itertools = "0.10.5"
ff = { package = "ff_ce", version = "0.11", features = ["derive"] }
log = { version = "0.4.14", default-features = false }
num = { version = "0.4", features = ["rand"] }
rustx = { git = "https://github.com/succinctlabs/succinctx.git" }
plonky2x = { git = "https://github.com/succinctlabs/succinctx.git" }
succinct-client = { git = "https://github.com/succinctlabs/succinctx.git" }
plonky2x-derive = { git = "https://github.com/succinctlabs/succinctx.git" }
serde = { version = "1", features = ["derive"] }
serde_json = "1.0.86"
tokio = { version = "1.2.0", features = ["full"] }
reqwest = "0.11.20"
ethers = { version = "2.0.10", features = ["ws"] }
sha256 = "1.4.0"
primitive-types = "0.12.1"
redis = { version = "0.23.3", features = [
"tokio-native-tls-comp",
"json",
"tokio-comp",
] }
dotenv = "0.15.0"
avail-subxt = { git = "https://github.com/availproject/avail.git", tag = "v1.11.0.0" }
sp-core = { git = "https://github.com/availproject/substrate.git", branch = "goldberg", default-features = false }
sha2 = { version = "0.10.8", default-features = false }
codec = { package = "parity-scale-codec", version = "3", default-features = false, features = [
"derive",
"full",
"bit-vec",
] }
alloy-sol-types = "0.4.2"
alloy-primitives = "0.4.2"
anyhow = "1.0.68"
clap = "4.4.9"
rs_merkle = "1.4.1"
futures = "0.3.30"
async-trait = "0.1.77"
[dev-dependencies]
anyhow = "1.0.68"
# Dependency `subxt` uses it's own 'version' of sp-core so we need to patch it :)
[patch.crates-io]
sp-core = { git = "https://github.com/availproject/substrate.git", branch = "goldberg" }
sp-io = { git = "https://github.com/availproject/substrate.git", branch = "goldberg" }
sp-runtime = { git = "https://github.com/availproject/substrate.git", branch = "goldberg" }
sp-std = { git = "https://github.com/availproject/substrate.git", branch = "goldberg" }
sp-core-hashing = { git = "https://github.com/availproject/substrate.git", branch = "goldberg" }