-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathCargo.toml
46 lines (40 loc) · 1.16 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
41
42
43
44
45
46
[package]
name = "risc0-ethereum-contracts"
description = "Ethereum contracts for RISC Zero applications"
version = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
homepage = { workspace = true }
repository = { workspace = true }
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[build-dependencies]
anyhow = "1.0"
[dependencies]
alloy = { workspace = true, features = ["contract"] }
alloy-primitives = { workspace = true, optional = true }
alloy-sol-types = { workspace = true }
anyhow = { workspace = true }
cfg-if = { workspace = true }
hex = { workspace = true, optional = true }
risc0-aggregation = { workspace = true, optional = true }
risc0-zkvm = { workspace = true }
serde = { workspace = true, optional = true }
thiserror = { workspace = true, features = ["default"] }
tracing = { workspace = true }
[dev-dependencies]
hex = { workspace = true }
regex = "1.10"
tokio = { workspace = true, features = ["macros", "rt"] }
[lib]
doctest = false
[features]
default = []
unstable = [
"dep:alloy-primitives",
"dep:hex",
"dep:risc0-aggregation",
"dep:serde",
"risc0-aggregation/verify"
]