-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
26 lines (23 loc) · 971 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
[workspace]
resolver = "2"
members = ["core", "header-chain", "final-spv", "boundless-client", "header-chain/header-chain-guest", "final-spv/final-spv-guest"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace.dependencies]
hex = "0.4.3"
risc0-zkvm = { version="1.2.0", features = ["prove"]}
risc0-zkp = "1.2.0"
env_logger = "0.10"
borsh = {version = "1.5.3", features = ["derive"] }
serde = "1.0"
serde_json = "1.0.108"
anyhow = { version = "1.0", default-features = false}
risc0-groth16 = {version="1.2.0", features=["prove"]}
tempfile = "3.10.1"
bitcoincore-rpc = "0.19.0"
crypto-bigint = { git = "https://github.com/risc0/RustCrypto-crypto-bigint", tag = "v0.5.2-risczero.0", default-features = false }
num-bigint = { version="0.4.5", features=["std"] }
num-traits = "0.2.19"
tracing = "0.1.40"
tracing-subscriber = {version = "0.3.18", features = ["env-filter"] }
# [features]
# cuda = ["risc0-zkvm/cuda"]