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
|
[package]
name = "zkm-sdk"
version = "0.2.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
libc = "0.2"
bincode = "1.3.3"
async-trait = "0.1"
zkm-emulator = { path = "/nix/store/h9s6kmnx7iafllv10wqhjix5kpyfsh37-zkm-unstable-2025-01-05/emulator" }
zkm-prover = { path = "/nix/store/h9s6kmnx7iafllv10wqhjix5kpyfsh37-zkm-unstable-2025-01-05/prover" }
common = { git = "https://github.com/zkMIPS/zkm-prover", branch = "main", default-features = false }
plonky2 = { git = "https://github.com/zkMIPS/plonky2.git", branch = "zkm_dev" }
#starky = { git = "https://github.com/zkMIPS/plonky2.git", branch = "zkm_dev" }
tonic = "0.8.1"
prost = "0.11.0"
reqwest = { version = "0.11", features = ["rustls-tls"] }
tokio = { version = "1.21.0", features = ["macros", "rt-multi-thread", "signal"] }
ethers = "2.0.14"
sha2 = { version = "0.10.8", default-features = false }
log = { version = "0.4.14", default-features = false }
anyhow = "1.0.75"
serde = { version = "1.0.144", features = ["derive"] }
serde_json = "1.0"
elf = { version = "0.7", default-features = false }
uuid = { version = "1.2", features = ["v4", "fast-rng", "macro-diagnostics"] }
##[dev-dependencies]
plonky2x = { git = "https://github.com/zkMIPS/succinctx.git", package = "plonky2x", branch = "zkm" }
[build-dependencies]
tonic-build = "0.8.0"
[features]
snark = []
test = []
|