-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
33 lines (29 loc) · 843 Bytes
/
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
[package]
name = "l2-sequencer"
version = "0.1.0"
edition = "2021"
[dependencies]
k256 = "0.13.3"
rand_core = "0.6.4"
prover = { git = "https://github.com/jonas089/L2-sequencer-utils" }
zk-logic = { git = "https://github.com/jonas089/L2-sequencer-utils" }
risc0-zkvm = { version = "1.0.5", default-features = false }
patricia-trie = { git = "https://github.com/jonas089/jonas089-trie" }
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
colored = "2.1.0"
tokio = { version = "1.38", features = ["full"] }
jsonrpsee-core = "0.20.3"
anyhow = "1.0"
indicatif = "0.17.8"
axum = "0.7.5"
reqwest = "0.12.5"
bincode = "1.3.3"
lazy_static = "1.5.0"
num-bigint = "0.4.6"
num-traits = "0.2.19"
rand = "0.8.5"
rusqlite = { version = "0.32", optional = true }
[features]
mock-net = []
sqlite = ["rusqlite", "patricia-trie/sqlite"]