-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
33 lines (29 loc) · 927 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
[workspace]
members = ["host", "methods"]
resolver = "2"
[workspace.package]
version = "0.0.1"
authors = ["Usher Labs <[email protected]>"]
repository = "https://github.com/usherlabs/verity-dp"
homepage = "https://www.usher.so/"
edition = "2021"
license = "Apache-2.0"
[workspace.dependencies]
chrono = { version = "0.4" }
serde = "1.0"
serde_json = "1.0"
tracing-subscriber = "0.3"
tokio = { version = "1.39", features = ["macros", "rt-multi-thread"] }
reqwest = { version = "0.12", features = ["json"] }
anyhow = "1.0.94"
risc0-zkvm = { version = "1.1.2" }
verity-client = { path = "../../rs/verity-client" }
verity-dp-zk-host = { path = "../../zk/host" }
verity-verify-remote = { path = "../../rs/verify-remote" }
verity-verify-tls = { path = "../../rs/verify-tls" }
# Always optimize; building and running the guest takes much longer without optimization.
[profile.dev]
opt-level = 3
[profile.release]
debug = 1
lto = true