-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathCargo.toml
36 lines (30 loc) · 924 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
34
35
36
[package]
name = "zkRust"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.5.4", features = ["derive"] }
regex = "1.10.5"
anyhow = "1.0.86"
hex = "0.4.3"
tokio = "1.38.0"
zk_rust_io = { path = "./zk_rust_io" }
# Sp1
sp1-sdk = { git = "https://github.com/succinctlabs/sp1.git", tag = "v1.0.1" }
# Risc 0
risc0-zkvm = { git = "https://github.com/risc0/risc0.git", tag = "v1.0.1" }
# Aligned SDK
aligned-sdk = { git = "https://github.com/yetanotherco/aligned_layer", tag = "v0.10.2" }
ethers = { tag = "v2.0.15-fix-reconnections", features = [
"ws",
"rustls",
], git = "https://github.com/yetanotherco/ethers-rs.git" }
dialoguer = "0.11.0"
bincode = "1.3.3"
rpassword = "7.3.1"
env_logger = "0.11.3"
log = "0.4.22"
# std::env::dir is deprecated on windows
dirs = "5.0.0"
serde_json = "1.0.117"