forked from pluto/web-prover
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
87 lines (72 loc) · 3.34 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
76
77
78
79
80
81
82
83
84
85
86
87
[workspace.package]
name ="webprover"
edition="2021"
[workspace]
members =["client", "client_ios", "client_wasm", "notary", "proofs", "web-prover-core", "tests"]
resolver="2"
[workspace.metadata]
# https://github.com/pluto/web-prover-circuits/releases
web_prover_circuits_version="0.10.0"
[workspace.dependencies]
# Local re-exporting
client ={ path="client" }
proofs ={ path="proofs" }
notary ={ path="notary" }
web-prover-core={ path="web-prover-core" }
# Serde
serde ={ version="1.0.204", features=["derive"] }
serde_json="1.0.120"
# Logging
tracing ="0.1.40"
tracing-subscriber={ version="0.3.18", features=["env-filter"] }
notary-server={ git="https://github.com/tlsnotary/tlsn.git", tag="v0.1.0-alpha.7" }
tlsn-verifier={ git="https://github.com/tlsnotary/tlsn.git", tag="v0.1.0-alpha.7" }
tlsn-prover ={ git="https://github.com/tlsnotary/tlsn.git", tag="v0.1.0-alpha.7" }
tlsn-common ={ git="https://github.com/tlsnotary/tlsn.git", tag="v0.1.0-alpha.7" }
tlsn-core ={ git="https://github.com/tlsnotary/tlsn.git", tag="v0.1.0-alpha.7" }
tls-client ={ git="https://github.com/tlsnotary/tlsn.git", tag="v0.1.0-alpha.7", package="tlsn-tls-client" }
tlsn-utils ={ git="https://github.com/tlsnotary/tlsn-utils", rev="e7b2db6" }
tls-client2 ={ git="https://github.com/pluto/tls-origo-legacy", package="tls-client" }
tls-core ={ git="https://github.com/pluto/tls-origo-legacy", package="tls-core" }
rayon ="1.10.0"
wasm-bindgen-rayon="=1.2.1"
futures ="0.3"
caratls_ekm_server ={ git="https://github.com/pluto/caratls.git", rev="2f4631af7400eafec7a533b72d1d460fa5a66db3" }
caratls_ekm_google_confidential_space_server={ git="https://github.com/pluto/caratls.git", rev="2f4631af7400eafec7a533b72d1d460fa5a66db3" }
caratls_ekm_client ={ git="https://github.com/pluto/caratls.git", rev="2f4631af7400eafec7a533b72d1d460fa5a66db3" }
caratls_ekm_google_confidential_space_client={ git="https://github.com/pluto/caratls.git", rev="2f4631af7400eafec7a533b72d1d460fa5a66db3" }
# CLI
clap={ version="4.5.13", features=["derive"] }
# errors
thiserror="1.0.61"
# HTTP
hyper ={ version="1.6", features=["full"] }
hyper-util ={ version="0.1", features=["full"] }
http-body-util="0.1"
# Async
tokio ={ version="1.39.1", features=["full"] }
tokio-util ={ version="0.7" }
tokio-rustls={ version="0.26.0", default-features=false, features=["logging", "tls12"] }
# circuits witness generator
web-proof-circuits-witness-generator={ git="https://github.com/pluto/web-prover-circuits", rev="0a09df087612d45fa3b0d5914d93c72417edb58b" }
uuid ={ version="1.10.0", default-features=false, features=["v4", "serde"] }
derive_more={ version="2.0.1", features=["full"] }
num-bigint ="0.4"
ff ={ version="0.13", default-features=false, features=["derive"] }
tiny-keccak={ version="2.0.2", features=["keccak"] }
url ="2.5.4"
chrono ="0.4"
tracing-test="0.2"
[profile.dev]
opt-level =1
split-debuginfo="unpacked"
incremental =true
[profile.release]
opt-level =0
lto =false
codegen-units=1
panic ="abort"
strip =true
debug =true # Propagate more information up through FFI
# [patch."https://github.com/pluto/web-prover-circuits"]
# web-proof-circuits-witness-generator={ path="../web-prover-circuits/witness-generator" }