-
Notifications
You must be signed in to change notification settings - Fork 127
Expand file tree
/
Copy pathCargo.toml
More file actions
170 lines (162 loc) · 6.65 KB
/
Cargo.toml
File metadata and controls
170 lines (162 loc) · 6.65 KB
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
[workspace]
members = [
"crates/attestation",
"crates/components/deap",
"crates/components/cipher",
"crates/components/hmac-sha256",
"crates/components/key-exchange",
"crates/core",
"crates/data-fixtures",
"crates/examples",
"crates/formats",
"crates/server-fixture/certs",
"crates/server-fixture/server",
"crates/tls/client",
"crates/tls/core",
"crates/mpc-tls",
"crates/tls/server-fixture",
"crates/sdk-core",
"crates/wasm",
"crates/harness/core",
"crates/harness/executor",
"crates/harness/runner",
"crates/harness/plot",
"crates/tlsn",
]
resolver = "2"
[workspace.lints.rust]
# unsafe_code = "forbid"
[workspace.lints.clippy]
# enum_glob_use = "deny"
[profile.tests-integration]
inherits = "release"
opt-level = 1
[profile.wasm]
inherits = "release"
lto = true
panic = "abort"
codegen-units = 1
[workspace.dependencies]
tls-server-fixture = { path = "crates/tls/server-fixture" }
tlsn-attestation = { path = "crates/attestation" }
tlsn-cipher = { path = "crates/components/cipher" }
tlsn-core = { path = "crates/core" }
tlsn-data-fixtures = { path = "crates/data-fixtures" }
tlsn-deap = { path = "crates/components/deap" }
tlsn-formats = { path = "crates/formats" }
tlsn-hmac-sha256 = { path = "crates/components/hmac-sha256" }
tlsn-key-exchange = { path = "crates/components/key-exchange" }
tlsn-mpc-tls = { path = "crates/mpc-tls" }
tlsn-mux = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "64722f7" }
tlsn-server-fixture = { path = "crates/server-fixture/server" }
tlsn-server-fixture-certs = { path = "crates/server-fixture/certs" }
tlsn-tls-client = { path = "crates/tls/client" }
tlsn-tls-client-async = { path = "crates/tls/client-async" }
tlsn-tls-core = { path = "crates/tls/core" }
tlsn-harness-core = { path = "crates/harness/core" }
tlsn-harness-executor = { path = "crates/harness/executor" }
tlsn-harness-runner = { path = "crates/harness/runner" }
tlsn-sdk-core = { path = "crates/sdk-core" }
tlsn-wasm = { path = "crates/wasm" }
tlsn = { path = "crates/tlsn" }
mpz-circuits = { git = "https://github.com/privacy-ethereum/mpz", rev = "8e9b66165d800635bc57c07bbbcb4a32592a1d7e" }
mpz-circuits-data = { git = "https://github.com/privacy-ethereum/mpz", rev = "8e9b66165d800635bc57c07bbbcb4a32592a1d7e" }
mpz-memory-core = { git = "https://github.com/privacy-ethereum/mpz", rev = "8e9b66165d800635bc57c07bbbcb4a32592a1d7e" }
mpz-common = { git = "https://github.com/privacy-ethereum/mpz", rev = "8e9b66165d800635bc57c07bbbcb4a32592a1d7e" }
mpz-core = { git = "https://github.com/privacy-ethereum/mpz", rev = "8e9b66165d800635bc57c07bbbcb4a32592a1d7e" }
mpz-vm-core = { git = "https://github.com/privacy-ethereum/mpz", rev = "8e9b66165d800635bc57c07bbbcb4a32592a1d7e" }
mpz-garble = { git = "https://github.com/privacy-ethereum/mpz", rev = "8e9b66165d800635bc57c07bbbcb4a32592a1d7e" }
mpz-garble-core = { git = "https://github.com/privacy-ethereum/mpz", rev = "8e9b66165d800635bc57c07bbbcb4a32592a1d7e" }
mpz-ole = { git = "https://github.com/privacy-ethereum/mpz", rev = "8e9b66165d800635bc57c07bbbcb4a32592a1d7e" }
mpz-ot = { git = "https://github.com/privacy-ethereum/mpz", rev = "8e9b66165d800635bc57c07bbbcb4a32592a1d7e" }
mpz-share-conversion = { git = "https://github.com/privacy-ethereum/mpz", rev = "8e9b66165d800635bc57c07bbbcb4a32592a1d7e" }
mpz-fields = { git = "https://github.com/privacy-ethereum/mpz", rev = "8e9b66165d800635bc57c07bbbcb4a32592a1d7e" }
mpz-zk = { git = "https://github.com/privacy-ethereum/mpz", rev = "8e9b66165d800635bc57c07bbbcb4a32592a1d7e" }
mpz-hash = { git = "https://github.com/privacy-ethereum/mpz", rev = "8e9b66165d800635bc57c07bbbcb4a32592a1d7e" }
mpz-ideal-vm = { git = "https://github.com/privacy-ethereum/mpz", rev = "8e9b66165d800635bc57c07bbbcb4a32592a1d7e" }
futures-plex = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "64722f7" }
rangeset = { version = "0.4" }
serio = { version = "0.2" }
spansy = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "64722f7" }
websocket-relay = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "64722f7" }
aead = { version = "0.4" }
aes = { version = "0.8" }
aes-gcm = { version = "0.9" }
anyhow = { version = "1.0" }
async_io_stream = { version = "0.3" }
async-trait = { version = "0.1" }
axum = { version = "0.8" }
bcs = { version = "0.1" }
bincode = { version = "1.3" }
blake3 = { version = "1.5" }
bon = { version = "3.6" }
bytes = { version = "1.4" }
cfg-if = { version = "1" }
chromiumoxide = { version = "0.9.1" }
chrono = { version = "0.4" }
cipher = { version = "0.4" }
clap = { version = "4.5" }
criterion = { version = "0.5" }
ctr = { version = "0.9" }
derive_builder = { version = "0.12" }
digest = { version = "0.10" }
elliptic-curve = { version = "0.13" }
enum-try-as-inner = { version = "0.1" }
env_logger = { version = "0.10" }
futures = { version = "0.3" }
futures-rustls = { version = "0.25" }
generic-array = { version = "0.14" }
ghash = { version = "0.5" }
hex = { version = "0.4" }
hmac = { version = "0.12" }
http-body-util = { version = "0.1" }
hyper = { version = "1.1" }
hyper-util = { version = "0.1" }
ipnet = { version = "2.11" }
inventory = { version = "0.3" }
itybity = { version = "0.2" }
js-sys = { version = "0.3" }
k256 = { version = "0.13" }
log = { version = "0.4" }
once_cell = { version = "1.19" }
opaque-debug = { version = "0.3" }
p256 = { version = "0.13" }
pin-project-lite = { version = "0.2" }
pollster = { version = "0.4" }
rand = { version = "0.9" }
rand_chacha = { version = "0.9" }
rand_core = { version = "0.9" }
rand06-compat = { version = "0.1" }
rayon = { version = "1.10" }
regex = { version = "1.10" }
ring = { version = "0.17" }
rs_merkle = { git = "https://github.com/tlsnotary/rs-merkle.git", rev = "85f3e82" }
rstest = { version = "0.17" }
rustls = { version = "0.21" }
rustls-pemfile = { version = "1.0" }
rustls-webpki = { version = "0.103" }
rustls-pki-types = { version = "1.12" }
sct = { version = "0.7" }
semver = { version = "1.0" }
serde = { version = "1.0" }
serde_json = { version = "1.0" }
sha2 = { version = "0.10" }
signature = { version = "2.2" }
thiserror = { version = "1.0" }
tiny-keccak = { version = "2.0" }
tokio = { version = "1.38" }
tokio-util = { version = "0.7" }
toml = { version = "0.8" }
tower = { version = "0.5" }
tower-http = { version = "0.5" }
tower-service = { version = "0.3" }
tracing = { version = "0.1" }
tracing-subscriber = { version = "0.3" }
wasm-bindgen = { version = "0.2" }
wasm-bindgen-futures = { version = "0.4" }
web-spawn = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "64722f7" }
web-time = { version = "0.2" }
webpki-roots = { version = "1.0" }
webpki-root-certs = { version = "1.0" }
ws_stream_wasm = { version = "0.7.5" }
zeroize = { version = "1.8" }