forked from risc0/risc0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (37 loc) · 1 KB
/
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
37
38
39
40
[package]
name = "xtask"
version = "0.1.0"
edition = { workspace = true }
[dependencies]
bincode = "1.3"
clap = { version = "4.5", features = ["derive", "env"] }
hex = "0.4"
prost-build = "0.12"
protobuf-src = "1.1"
regex = "1"
risc0-circuit-keccak = { workspace = true, features = [
"prove",
], optional = true }
risc0-circuit-recursion = { workspace = true, features = [
"prove",
], optional = true }
risc0-core = { workspace = true }
risc0-zkp = { workspace = true, optional = true }
risc0-zkvm = { workspace = true, features = ["prove"], optional = true }
risc0-zkvm-methods = { path = "../risc0/zkvm/methods", optional = true }
tempfile = "3.12"
tracing = { version = "0.1", default-features = false }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
which = "7.0"
xshell = "0.2"
[package.metadata.release]
release = false
[features]
default = ["zkvm"]
zkvm = [
"dep:risc0-circuit-keccak",
"dep:risc0-circuit-recursion",
"dep:risc0-zkp",
"dep:risc0-zkvm",
"dep:risc0-zkvm-methods",
]