-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (32 loc) · 825 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 = "zk-puzzle-chain"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
resolver = "2"
members = [
"zk-pow/host",
"zk-pow/methods"
]
[dependencies]
risc0-zkvm = { version = "1.0.5" }
serde = "1.0"
serde_json = "1.0"
diesel = { version = "2.1.0", features = ["postgres"] }
dotenv = "0.15.0"
bincode = "1.3.3"
sha2 = "0.10.8"
jsonrpc-core = "18.0.0"
jsonrpc-http-server = "18.0.0"
hex = "0.4.3"
methods = { path = "./zk-pow/methods" }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
jsonrpsee = { version = "0.24.3", features = ["http-client"] }
tokio = { version = "1.40.0", features = ["full"] }
[[bin]]
name = "miner"
path = "src/miner.rs"
[[bin]]
name = "client"
path = "src/main.rs"