-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
95 lines (79 loc) · 3.38 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
88
89
90
91
92
93
94
95
[workspace]
members=["client", "client_ios", "client_wasm", "notary", "proofs"]
# members =["client", "client_wasm", "proofs"] # config for wasm32 rust analyzer
# members =["client", "client_ios"] # config for ios rust analyzer
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" }
# 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"] }
tlsn-verifier={ git="https://github.com/tlsnotary/tlsn.git", tag="v0.1.0-alpha.4" }
tlsn-prover={ git="https://github.com/tlsnotary/tlsn.git", tag="v0.1.0-alpha.4", features=[
"tracing",
] }
tlsn-core={ git="https://github.com/tlsnotary/tlsn.git", tag="v0.1.0-alpha.4" }
tls-client={ git="https://github.com/tlsnotary/tlsn.git", tag="v0.1.0-alpha.4", package="tlsn-tls-client" }
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"] }
[package]
name ="webprover"
edition="2021"
[[bin]]
name="mock_server"
path="bin/mock_server.rs"
[dependencies]
# Dependancies for the binaries
hyper ={ workspace=true }
hyper-util ={ workspace=true }
http-body-util={ workspace=true }
pki-types ={ package="rustls-pki-types", version="1.7" }
rustls ={ version="0.23.11", default-features=false, features=["logging", "tls12", "std", "ring"] }
rustls-pemfile={ version="2.0.0" }
tokio ={ workspace=true }
tokio-rustls ={ workspace=true }
serde_json ={ workspace=true }
[profile.dev]
opt-level =1
overflow-checks=false
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" }