-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
75 lines (73 loc) · 2.46 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[workspace]
members = [
"ic/libraries",
"ic/managed/verifier",
"rs/tests/load",
"rs/tlsn-core-no-session",
"rs/verify-local",
"rs/verify-remote",
"rs/verify-tls",
"rs/verity-client",
"zk/guest",
"zk/host",
]
resolver = "2"
[workspace.package]
version = "0.2.4"
authors = ["Usher Labs <[email protected]>"]
repository = "https://github.com/usherlabs/verity-dp"
homepage = "https://www.usher.so/"
documentation = "https://www.usher.so/"
license = "MIT/Apache-2.0"
edition = "2021"
[workspace.dependencies]
alloy-sol-types = "0.8.14"
anyhow = "1.0.94"
bimap = "0.6.3"
bincode = "1.3.3"
bytes = "1.9.0"
candid = "0.10.10"
cfg-if = "1.0.0"
dotenv = "0.15.0"
easy-hasher = "2.2.1"
elliptic-curve = "0.13.8"
eth-encode-packed = "0.1.0"
futures = "0.3.31"
getrandom = "0.2.15"
hex = "0.4.3"
http = "1.2.0"
ic-agent = { git = "https://github.com/dfinity/agent-rs.git", rev = "60a64dd2d5368180f03a75df80f475d6e2caf21a" }
ic-cdk = "0.17.0"
ic-cdk-timers = "0.11.0"
ic-wasi-polyfill = { git = "https://github.com/wasm-forge/ic-wasi-polyfill", rev = "2476429bb1604d3ad5a28d458b8faa61bcbe4ada" }
libsecp256k1 = { version = "0.7.1", default-features = false }
mpz-circuits = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "b8ae7ac" }
mpz-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "b8ae7ac" }
mpz-garble-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "b8ae7ac" }
opaque-debug = "0.3.1"
p256 = "0.13.2"
rand = "0.8.5"
reqwest = "0.12.9"
reqwest-eventsource = "0.6.0"
risc0-build = "1.2.0"
risc0-build-ethereum = { git = "https://github.com/risc0/risc0-ethereum", tag = "v1.1.4" }
risc0-ethereum-contracts = { git = "https://github.com/risc0/risc0-ethereum", tag = "v1.1.4" }
risc0-zkvm = { version = "1.2.0", default-features = false }
rs_merkle = "1.4.2"
rstest = "0.23.0"
serde = "1.0.215"
serde_json = "1.0.133"
thiserror = "1.0.69"
tlsn-core = { git = "https://github.com/tlsnotary/tlsn", rev = "v0.1.0-alpha.6" }
tlsn-core-no-session = { path = "./rs/tlsn-core-no-session" }
tlsn-utils = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "45370cc" }
tokio = "1.42.0"
tokio-util = "0.7.13"
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
uuid = "1.11.0"
verity-client = { path = "./rs/verity-client" }
verity-ic = { path = "./ic/libraries" }
verity-verify-local = { path = "./rs/verify-local" }
verity-verify-remote = { path = "./rs/verify-remote" }
verity-verify-tls = { path = "./rs/verify-tls" }