totalreclaw-core 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- totalreclaw_core-0.1.0/Cargo.lock +856 -0
- totalreclaw_core-0.1.0/Cargo.toml +55 -0
- totalreclaw_core-0.1.0/PKG-INFO +6 -0
- totalreclaw_core-0.1.0/pyproject.toml +14 -0
- totalreclaw_core-0.1.0/src/blind.rs +133 -0
- totalreclaw_core-0.1.0/src/crypto.rs +422 -0
- totalreclaw_core-0.1.0/src/debrief.rs +478 -0
- totalreclaw_core-0.1.0/src/fingerprint.rs +99 -0
- totalreclaw_core-0.1.0/src/lib.rs +44 -0
- totalreclaw_core-0.1.0/src/lsh.rs +312 -0
- totalreclaw_core-0.1.0/src/protobuf.rs +165 -0
- totalreclaw_core-0.1.0/src/python.rs +350 -0
- totalreclaw_core-0.1.0/src/stemmer.rs +335 -0
- totalreclaw_core-0.1.0/src/wasm.rs +360 -0
- totalreclaw_core-0.1.0/tests/fixtures/crypto_vectors.json +290 -0
- totalreclaw_core-0.1.0/tests/python_parity_test.py +327 -0
- totalreclaw_core-0.1.0/tests/python_standalone_test.py +355 -0
- totalreclaw_core-0.1.0/tests/wasm_parity.mjs +301 -0
|
@@ -0,0 +1,856 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "aead"
|
|
7
|
+
version = "0.5.2"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"crypto-common",
|
|
12
|
+
"generic-array",
|
|
13
|
+
]
|
|
14
|
+
|
|
15
|
+
[[package]]
|
|
16
|
+
name = "aes"
|
|
17
|
+
version = "0.8.4"
|
|
18
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
19
|
+
checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
|
|
20
|
+
dependencies = [
|
|
21
|
+
"cfg-if",
|
|
22
|
+
"cipher",
|
|
23
|
+
"cpufeatures",
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "aes-gcm"
|
|
28
|
+
version = "0.10.3"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1"
|
|
31
|
+
dependencies = [
|
|
32
|
+
"aead",
|
|
33
|
+
"aes",
|
|
34
|
+
"cipher",
|
|
35
|
+
"ctr",
|
|
36
|
+
"ghash",
|
|
37
|
+
"subtle",
|
|
38
|
+
]
|
|
39
|
+
|
|
40
|
+
[[package]]
|
|
41
|
+
name = "android_system_properties"
|
|
42
|
+
version = "0.1.5"
|
|
43
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
44
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
45
|
+
dependencies = [
|
|
46
|
+
"libc",
|
|
47
|
+
]
|
|
48
|
+
|
|
49
|
+
[[package]]
|
|
50
|
+
name = "arrayvec"
|
|
51
|
+
version = "0.7.6"
|
|
52
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
53
|
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
54
|
+
|
|
55
|
+
[[package]]
|
|
56
|
+
name = "autocfg"
|
|
57
|
+
version = "1.5.0"
|
|
58
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
59
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
60
|
+
|
|
61
|
+
[[package]]
|
|
62
|
+
name = "base64"
|
|
63
|
+
version = "0.22.1"
|
|
64
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
65
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
66
|
+
|
|
67
|
+
[[package]]
|
|
68
|
+
name = "bip39"
|
|
69
|
+
version = "2.2.2"
|
|
70
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
71
|
+
checksum = "90dbd31c98227229239363921e60fcf5e558e43ec69094d46fc4996f08d1d5bc"
|
|
72
|
+
dependencies = [
|
|
73
|
+
"bitcoin_hashes",
|
|
74
|
+
"serde",
|
|
75
|
+
"unicode-normalization",
|
|
76
|
+
]
|
|
77
|
+
|
|
78
|
+
[[package]]
|
|
79
|
+
name = "bitcoin_hashes"
|
|
80
|
+
version = "0.14.1"
|
|
81
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
82
|
+
checksum = "26ec84b80c482df901772e931a9a681e26a1b9ee2302edeff23cb30328745c8b"
|
|
83
|
+
dependencies = [
|
|
84
|
+
"hex-conservative",
|
|
85
|
+
]
|
|
86
|
+
|
|
87
|
+
[[package]]
|
|
88
|
+
name = "block-buffer"
|
|
89
|
+
version = "0.10.4"
|
|
90
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
91
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
92
|
+
dependencies = [
|
|
93
|
+
"generic-array",
|
|
94
|
+
]
|
|
95
|
+
|
|
96
|
+
[[package]]
|
|
97
|
+
name = "bumpalo"
|
|
98
|
+
version = "3.20.2"
|
|
99
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
100
|
+
checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
|
|
101
|
+
|
|
102
|
+
[[package]]
|
|
103
|
+
name = "cc"
|
|
104
|
+
version = "1.2.58"
|
|
105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
106
|
+
checksum = "e1e928d4b69e3077709075a938a05ffbedfa53a84c8f766efbf8220bb1ff60e1"
|
|
107
|
+
dependencies = [
|
|
108
|
+
"find-msvc-tools",
|
|
109
|
+
"shlex",
|
|
110
|
+
]
|
|
111
|
+
|
|
112
|
+
[[package]]
|
|
113
|
+
name = "cfg-if"
|
|
114
|
+
version = "1.0.4"
|
|
115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
116
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
117
|
+
|
|
118
|
+
[[package]]
|
|
119
|
+
name = "chrono"
|
|
120
|
+
version = "0.4.44"
|
|
121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
122
|
+
checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
|
|
123
|
+
dependencies = [
|
|
124
|
+
"iana-time-zone",
|
|
125
|
+
"js-sys",
|
|
126
|
+
"num-traits",
|
|
127
|
+
"serde",
|
|
128
|
+
"wasm-bindgen",
|
|
129
|
+
"windows-link",
|
|
130
|
+
]
|
|
131
|
+
|
|
132
|
+
[[package]]
|
|
133
|
+
name = "cipher"
|
|
134
|
+
version = "0.4.4"
|
|
135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
136
|
+
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
|
|
137
|
+
dependencies = [
|
|
138
|
+
"crypto-common",
|
|
139
|
+
"inout",
|
|
140
|
+
]
|
|
141
|
+
|
|
142
|
+
[[package]]
|
|
143
|
+
name = "core-foundation-sys"
|
|
144
|
+
version = "0.8.7"
|
|
145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
146
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
147
|
+
|
|
148
|
+
[[package]]
|
|
149
|
+
name = "cpufeatures"
|
|
150
|
+
version = "0.2.17"
|
|
151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
152
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
153
|
+
dependencies = [
|
|
154
|
+
"libc",
|
|
155
|
+
]
|
|
156
|
+
|
|
157
|
+
[[package]]
|
|
158
|
+
name = "crypto-common"
|
|
159
|
+
version = "0.1.7"
|
|
160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
161
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
162
|
+
dependencies = [
|
|
163
|
+
"generic-array",
|
|
164
|
+
"rand_core",
|
|
165
|
+
"typenum",
|
|
166
|
+
]
|
|
167
|
+
|
|
168
|
+
[[package]]
|
|
169
|
+
name = "ctr"
|
|
170
|
+
version = "0.9.2"
|
|
171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
172
|
+
checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
|
|
173
|
+
dependencies = [
|
|
174
|
+
"cipher",
|
|
175
|
+
]
|
|
176
|
+
|
|
177
|
+
[[package]]
|
|
178
|
+
name = "digest"
|
|
179
|
+
version = "0.10.7"
|
|
180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
181
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
182
|
+
dependencies = [
|
|
183
|
+
"block-buffer",
|
|
184
|
+
"crypto-common",
|
|
185
|
+
"subtle",
|
|
186
|
+
]
|
|
187
|
+
|
|
188
|
+
[[package]]
|
|
189
|
+
name = "find-msvc-tools"
|
|
190
|
+
version = "0.1.9"
|
|
191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
192
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
193
|
+
|
|
194
|
+
[[package]]
|
|
195
|
+
name = "generic-array"
|
|
196
|
+
version = "0.14.7"
|
|
197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
198
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
199
|
+
dependencies = [
|
|
200
|
+
"typenum",
|
|
201
|
+
"version_check",
|
|
202
|
+
]
|
|
203
|
+
|
|
204
|
+
[[package]]
|
|
205
|
+
name = "getrandom"
|
|
206
|
+
version = "0.2.17"
|
|
207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
208
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
209
|
+
dependencies = [
|
|
210
|
+
"cfg-if",
|
|
211
|
+
"js-sys",
|
|
212
|
+
"libc",
|
|
213
|
+
"wasi",
|
|
214
|
+
"wasm-bindgen",
|
|
215
|
+
]
|
|
216
|
+
|
|
217
|
+
[[package]]
|
|
218
|
+
name = "ghash"
|
|
219
|
+
version = "0.5.1"
|
|
220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
221
|
+
checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1"
|
|
222
|
+
dependencies = [
|
|
223
|
+
"opaque-debug",
|
|
224
|
+
"polyval",
|
|
225
|
+
]
|
|
226
|
+
|
|
227
|
+
[[package]]
|
|
228
|
+
name = "heck"
|
|
229
|
+
version = "0.5.0"
|
|
230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
231
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
232
|
+
|
|
233
|
+
[[package]]
|
|
234
|
+
name = "hex"
|
|
235
|
+
version = "0.4.3"
|
|
236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
237
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
238
|
+
|
|
239
|
+
[[package]]
|
|
240
|
+
name = "hex-conservative"
|
|
241
|
+
version = "0.2.2"
|
|
242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
243
|
+
checksum = "fda06d18ac606267c40c04e41b9947729bf8b9efe74bd4e82b61a5f26a510b9f"
|
|
244
|
+
dependencies = [
|
|
245
|
+
"arrayvec",
|
|
246
|
+
]
|
|
247
|
+
|
|
248
|
+
[[package]]
|
|
249
|
+
name = "hkdf"
|
|
250
|
+
version = "0.12.4"
|
|
251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
252
|
+
checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
|
|
253
|
+
dependencies = [
|
|
254
|
+
"hmac",
|
|
255
|
+
]
|
|
256
|
+
|
|
257
|
+
[[package]]
|
|
258
|
+
name = "hmac"
|
|
259
|
+
version = "0.12.1"
|
|
260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
261
|
+
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
|
|
262
|
+
dependencies = [
|
|
263
|
+
"digest",
|
|
264
|
+
]
|
|
265
|
+
|
|
266
|
+
[[package]]
|
|
267
|
+
name = "iana-time-zone"
|
|
268
|
+
version = "0.1.65"
|
|
269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
270
|
+
checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
|
|
271
|
+
dependencies = [
|
|
272
|
+
"android_system_properties",
|
|
273
|
+
"core-foundation-sys",
|
|
274
|
+
"iana-time-zone-haiku",
|
|
275
|
+
"js-sys",
|
|
276
|
+
"log",
|
|
277
|
+
"wasm-bindgen",
|
|
278
|
+
"windows-core",
|
|
279
|
+
]
|
|
280
|
+
|
|
281
|
+
[[package]]
|
|
282
|
+
name = "iana-time-zone-haiku"
|
|
283
|
+
version = "0.1.2"
|
|
284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
285
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
286
|
+
dependencies = [
|
|
287
|
+
"cc",
|
|
288
|
+
]
|
|
289
|
+
|
|
290
|
+
[[package]]
|
|
291
|
+
name = "indoc"
|
|
292
|
+
version = "2.0.7"
|
|
293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
294
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
295
|
+
dependencies = [
|
|
296
|
+
"rustversion",
|
|
297
|
+
]
|
|
298
|
+
|
|
299
|
+
[[package]]
|
|
300
|
+
name = "inout"
|
|
301
|
+
version = "0.1.4"
|
|
302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
303
|
+
checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
|
|
304
|
+
dependencies = [
|
|
305
|
+
"generic-array",
|
|
306
|
+
]
|
|
307
|
+
|
|
308
|
+
[[package]]
|
|
309
|
+
name = "itoa"
|
|
310
|
+
version = "1.0.18"
|
|
311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
312
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
313
|
+
|
|
314
|
+
[[package]]
|
|
315
|
+
name = "js-sys"
|
|
316
|
+
version = "0.3.94"
|
|
317
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
318
|
+
checksum = "2e04e2ef80ce82e13552136fabeef8a5ed1f985a96805761cbb9a2c34e7664d9"
|
|
319
|
+
dependencies = [
|
|
320
|
+
"once_cell",
|
|
321
|
+
"wasm-bindgen",
|
|
322
|
+
]
|
|
323
|
+
|
|
324
|
+
[[package]]
|
|
325
|
+
name = "libc"
|
|
326
|
+
version = "0.2.184"
|
|
327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
328
|
+
checksum = "48f5d2a454e16a5ea0f4ced81bd44e4cfc7bd3a507b61887c99fd3538b28e4af"
|
|
329
|
+
|
|
330
|
+
[[package]]
|
|
331
|
+
name = "log"
|
|
332
|
+
version = "0.4.29"
|
|
333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
334
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
335
|
+
|
|
336
|
+
[[package]]
|
|
337
|
+
name = "memchr"
|
|
338
|
+
version = "2.8.0"
|
|
339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
340
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
341
|
+
|
|
342
|
+
[[package]]
|
|
343
|
+
name = "memoffset"
|
|
344
|
+
version = "0.9.1"
|
|
345
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
346
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
347
|
+
dependencies = [
|
|
348
|
+
"autocfg",
|
|
349
|
+
]
|
|
350
|
+
|
|
351
|
+
[[package]]
|
|
352
|
+
name = "num-traits"
|
|
353
|
+
version = "0.2.19"
|
|
354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
355
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
356
|
+
dependencies = [
|
|
357
|
+
"autocfg",
|
|
358
|
+
]
|
|
359
|
+
|
|
360
|
+
[[package]]
|
|
361
|
+
name = "once_cell"
|
|
362
|
+
version = "1.21.4"
|
|
363
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
364
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
365
|
+
|
|
366
|
+
[[package]]
|
|
367
|
+
name = "opaque-debug"
|
|
368
|
+
version = "0.3.1"
|
|
369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
370
|
+
checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
|
|
371
|
+
|
|
372
|
+
[[package]]
|
|
373
|
+
name = "pbkdf2"
|
|
374
|
+
version = "0.12.2"
|
|
375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
376
|
+
checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
|
|
377
|
+
dependencies = [
|
|
378
|
+
"digest",
|
|
379
|
+
"hmac",
|
|
380
|
+
]
|
|
381
|
+
|
|
382
|
+
[[package]]
|
|
383
|
+
name = "polyval"
|
|
384
|
+
version = "0.6.2"
|
|
385
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
386
|
+
checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25"
|
|
387
|
+
dependencies = [
|
|
388
|
+
"cfg-if",
|
|
389
|
+
"cpufeatures",
|
|
390
|
+
"opaque-debug",
|
|
391
|
+
"universal-hash",
|
|
392
|
+
]
|
|
393
|
+
|
|
394
|
+
[[package]]
|
|
395
|
+
name = "portable-atomic"
|
|
396
|
+
version = "1.13.1"
|
|
397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
398
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
399
|
+
|
|
400
|
+
[[package]]
|
|
401
|
+
name = "ppv-lite86"
|
|
402
|
+
version = "0.2.21"
|
|
403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
404
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
405
|
+
dependencies = [
|
|
406
|
+
"zerocopy",
|
|
407
|
+
]
|
|
408
|
+
|
|
409
|
+
[[package]]
|
|
410
|
+
name = "proc-macro2"
|
|
411
|
+
version = "1.0.106"
|
|
412
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
413
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
414
|
+
dependencies = [
|
|
415
|
+
"unicode-ident",
|
|
416
|
+
]
|
|
417
|
+
|
|
418
|
+
[[package]]
|
|
419
|
+
name = "pyo3"
|
|
420
|
+
version = "0.25.1"
|
|
421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
422
|
+
checksum = "8970a78afe0628a3e3430376fc5fd76b6b45c4d43360ffd6cdd40bdde72b682a"
|
|
423
|
+
dependencies = [
|
|
424
|
+
"indoc",
|
|
425
|
+
"libc",
|
|
426
|
+
"memoffset",
|
|
427
|
+
"once_cell",
|
|
428
|
+
"portable-atomic",
|
|
429
|
+
"pyo3-build-config",
|
|
430
|
+
"pyo3-ffi",
|
|
431
|
+
"pyo3-macros",
|
|
432
|
+
"unindent",
|
|
433
|
+
]
|
|
434
|
+
|
|
435
|
+
[[package]]
|
|
436
|
+
name = "pyo3-build-config"
|
|
437
|
+
version = "0.25.1"
|
|
438
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
439
|
+
checksum = "458eb0c55e7ece017adeba38f2248ff3ac615e53660d7c71a238d7d2a01c7598"
|
|
440
|
+
dependencies = [
|
|
441
|
+
"once_cell",
|
|
442
|
+
"target-lexicon",
|
|
443
|
+
]
|
|
444
|
+
|
|
445
|
+
[[package]]
|
|
446
|
+
name = "pyo3-ffi"
|
|
447
|
+
version = "0.25.1"
|
|
448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
449
|
+
checksum = "7114fe5457c61b276ab77c5055f206295b812608083644a5c5b2640c3102565c"
|
|
450
|
+
dependencies = [
|
|
451
|
+
"libc",
|
|
452
|
+
"pyo3-build-config",
|
|
453
|
+
]
|
|
454
|
+
|
|
455
|
+
[[package]]
|
|
456
|
+
name = "pyo3-macros"
|
|
457
|
+
version = "0.25.1"
|
|
458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
459
|
+
checksum = "a8725c0a622b374d6cb051d11a0983786448f7785336139c3c94f5aa6bef7e50"
|
|
460
|
+
dependencies = [
|
|
461
|
+
"proc-macro2",
|
|
462
|
+
"pyo3-macros-backend",
|
|
463
|
+
"quote",
|
|
464
|
+
"syn",
|
|
465
|
+
]
|
|
466
|
+
|
|
467
|
+
[[package]]
|
|
468
|
+
name = "pyo3-macros-backend"
|
|
469
|
+
version = "0.25.1"
|
|
470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
471
|
+
checksum = "4109984c22491085343c05b0dbc54ddc405c3cf7b4374fc533f5c3313a572ccc"
|
|
472
|
+
dependencies = [
|
|
473
|
+
"heck",
|
|
474
|
+
"proc-macro2",
|
|
475
|
+
"pyo3-build-config",
|
|
476
|
+
"quote",
|
|
477
|
+
"syn",
|
|
478
|
+
]
|
|
479
|
+
|
|
480
|
+
[[package]]
|
|
481
|
+
name = "quote"
|
|
482
|
+
version = "1.0.45"
|
|
483
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
484
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
485
|
+
dependencies = [
|
|
486
|
+
"proc-macro2",
|
|
487
|
+
]
|
|
488
|
+
|
|
489
|
+
[[package]]
|
|
490
|
+
name = "rand"
|
|
491
|
+
version = "0.8.5"
|
|
492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
493
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
494
|
+
dependencies = [
|
|
495
|
+
"libc",
|
|
496
|
+
"rand_chacha",
|
|
497
|
+
"rand_core",
|
|
498
|
+
]
|
|
499
|
+
|
|
500
|
+
[[package]]
|
|
501
|
+
name = "rand_chacha"
|
|
502
|
+
version = "0.3.1"
|
|
503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
504
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
505
|
+
dependencies = [
|
|
506
|
+
"ppv-lite86",
|
|
507
|
+
"rand_core",
|
|
508
|
+
]
|
|
509
|
+
|
|
510
|
+
[[package]]
|
|
511
|
+
name = "rand_core"
|
|
512
|
+
version = "0.6.4"
|
|
513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
514
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
515
|
+
dependencies = [
|
|
516
|
+
"getrandom",
|
|
517
|
+
]
|
|
518
|
+
|
|
519
|
+
[[package]]
|
|
520
|
+
name = "rustversion"
|
|
521
|
+
version = "1.0.22"
|
|
522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
523
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
524
|
+
|
|
525
|
+
[[package]]
|
|
526
|
+
name = "serde"
|
|
527
|
+
version = "1.0.228"
|
|
528
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
529
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
530
|
+
dependencies = [
|
|
531
|
+
"serde_core",
|
|
532
|
+
"serde_derive",
|
|
533
|
+
]
|
|
534
|
+
|
|
535
|
+
[[package]]
|
|
536
|
+
name = "serde-wasm-bindgen"
|
|
537
|
+
version = "0.6.5"
|
|
538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
539
|
+
checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b"
|
|
540
|
+
dependencies = [
|
|
541
|
+
"js-sys",
|
|
542
|
+
"serde",
|
|
543
|
+
"wasm-bindgen",
|
|
544
|
+
]
|
|
545
|
+
|
|
546
|
+
[[package]]
|
|
547
|
+
name = "serde_core"
|
|
548
|
+
version = "1.0.228"
|
|
549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
550
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
551
|
+
dependencies = [
|
|
552
|
+
"serde_derive",
|
|
553
|
+
]
|
|
554
|
+
|
|
555
|
+
[[package]]
|
|
556
|
+
name = "serde_derive"
|
|
557
|
+
version = "1.0.228"
|
|
558
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
559
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
560
|
+
dependencies = [
|
|
561
|
+
"proc-macro2",
|
|
562
|
+
"quote",
|
|
563
|
+
"syn",
|
|
564
|
+
]
|
|
565
|
+
|
|
566
|
+
[[package]]
|
|
567
|
+
name = "serde_json"
|
|
568
|
+
version = "1.0.149"
|
|
569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
570
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
571
|
+
dependencies = [
|
|
572
|
+
"itoa",
|
|
573
|
+
"memchr",
|
|
574
|
+
"serde",
|
|
575
|
+
"serde_core",
|
|
576
|
+
"zmij",
|
|
577
|
+
]
|
|
578
|
+
|
|
579
|
+
[[package]]
|
|
580
|
+
name = "sha2"
|
|
581
|
+
version = "0.10.9"
|
|
582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
583
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
584
|
+
dependencies = [
|
|
585
|
+
"cfg-if",
|
|
586
|
+
"cpufeatures",
|
|
587
|
+
"digest",
|
|
588
|
+
]
|
|
589
|
+
|
|
590
|
+
[[package]]
|
|
591
|
+
name = "shlex"
|
|
592
|
+
version = "1.3.0"
|
|
593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
594
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
595
|
+
|
|
596
|
+
[[package]]
|
|
597
|
+
name = "subtle"
|
|
598
|
+
version = "2.6.1"
|
|
599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
600
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
601
|
+
|
|
602
|
+
[[package]]
|
|
603
|
+
name = "syn"
|
|
604
|
+
version = "2.0.117"
|
|
605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
606
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
607
|
+
dependencies = [
|
|
608
|
+
"proc-macro2",
|
|
609
|
+
"quote",
|
|
610
|
+
"unicode-ident",
|
|
611
|
+
]
|
|
612
|
+
|
|
613
|
+
[[package]]
|
|
614
|
+
name = "target-lexicon"
|
|
615
|
+
version = "0.13.5"
|
|
616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
617
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
618
|
+
|
|
619
|
+
[[package]]
|
|
620
|
+
name = "thiserror"
|
|
621
|
+
version = "2.0.18"
|
|
622
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
623
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
624
|
+
dependencies = [
|
|
625
|
+
"thiserror-impl",
|
|
626
|
+
]
|
|
627
|
+
|
|
628
|
+
[[package]]
|
|
629
|
+
name = "thiserror-impl"
|
|
630
|
+
version = "2.0.18"
|
|
631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
632
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
633
|
+
dependencies = [
|
|
634
|
+
"proc-macro2",
|
|
635
|
+
"quote",
|
|
636
|
+
"syn",
|
|
637
|
+
]
|
|
638
|
+
|
|
639
|
+
[[package]]
|
|
640
|
+
name = "tinyvec"
|
|
641
|
+
version = "1.11.0"
|
|
642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
643
|
+
checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
|
|
644
|
+
dependencies = [
|
|
645
|
+
"tinyvec_macros",
|
|
646
|
+
]
|
|
647
|
+
|
|
648
|
+
[[package]]
|
|
649
|
+
name = "tinyvec_macros"
|
|
650
|
+
version = "0.1.1"
|
|
651
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
652
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
653
|
+
|
|
654
|
+
[[package]]
|
|
655
|
+
name = "totalreclaw-core"
|
|
656
|
+
version = "0.1.0"
|
|
657
|
+
dependencies = [
|
|
658
|
+
"aes-gcm",
|
|
659
|
+
"base64",
|
|
660
|
+
"bip39",
|
|
661
|
+
"chrono",
|
|
662
|
+
"getrandom",
|
|
663
|
+
"hex",
|
|
664
|
+
"hkdf",
|
|
665
|
+
"hmac",
|
|
666
|
+
"js-sys",
|
|
667
|
+
"pbkdf2",
|
|
668
|
+
"pyo3",
|
|
669
|
+
"rand",
|
|
670
|
+
"serde",
|
|
671
|
+
"serde-wasm-bindgen",
|
|
672
|
+
"serde_json",
|
|
673
|
+
"sha2",
|
|
674
|
+
"thiserror",
|
|
675
|
+
"unicode-normalization",
|
|
676
|
+
"wasm-bindgen",
|
|
677
|
+
]
|
|
678
|
+
|
|
679
|
+
[[package]]
|
|
680
|
+
name = "typenum"
|
|
681
|
+
version = "1.19.0"
|
|
682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
683
|
+
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
|
684
|
+
|
|
685
|
+
[[package]]
|
|
686
|
+
name = "unicode-ident"
|
|
687
|
+
version = "1.0.24"
|
|
688
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
689
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
690
|
+
|
|
691
|
+
[[package]]
|
|
692
|
+
name = "unicode-normalization"
|
|
693
|
+
version = "0.1.25"
|
|
694
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
695
|
+
checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
|
|
696
|
+
dependencies = [
|
|
697
|
+
"tinyvec",
|
|
698
|
+
]
|
|
699
|
+
|
|
700
|
+
[[package]]
|
|
701
|
+
name = "unindent"
|
|
702
|
+
version = "0.2.4"
|
|
703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
704
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
705
|
+
|
|
706
|
+
[[package]]
|
|
707
|
+
name = "universal-hash"
|
|
708
|
+
version = "0.5.1"
|
|
709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
710
|
+
checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
|
|
711
|
+
dependencies = [
|
|
712
|
+
"crypto-common",
|
|
713
|
+
"subtle",
|
|
714
|
+
]
|
|
715
|
+
|
|
716
|
+
[[package]]
|
|
717
|
+
name = "version_check"
|
|
718
|
+
version = "0.9.5"
|
|
719
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
720
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
721
|
+
|
|
722
|
+
[[package]]
|
|
723
|
+
name = "wasi"
|
|
724
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
726
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
727
|
+
|
|
728
|
+
[[package]]
|
|
729
|
+
name = "wasm-bindgen"
|
|
730
|
+
version = "0.2.117"
|
|
731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
732
|
+
checksum = "0551fc1bb415591e3372d0bc4780db7e587d84e2a7e79da121051c5c4b89d0b0"
|
|
733
|
+
dependencies = [
|
|
734
|
+
"cfg-if",
|
|
735
|
+
"once_cell",
|
|
736
|
+
"rustversion",
|
|
737
|
+
"wasm-bindgen-macro",
|
|
738
|
+
"wasm-bindgen-shared",
|
|
739
|
+
]
|
|
740
|
+
|
|
741
|
+
[[package]]
|
|
742
|
+
name = "wasm-bindgen-macro"
|
|
743
|
+
version = "0.2.117"
|
|
744
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
745
|
+
checksum = "7fbdf9a35adf44786aecd5ff89b4563a90325f9da0923236f6104e603c7e86be"
|
|
746
|
+
dependencies = [
|
|
747
|
+
"quote",
|
|
748
|
+
"wasm-bindgen-macro-support",
|
|
749
|
+
]
|
|
750
|
+
|
|
751
|
+
[[package]]
|
|
752
|
+
name = "wasm-bindgen-macro-support"
|
|
753
|
+
version = "0.2.117"
|
|
754
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
755
|
+
checksum = "dca9693ef2bab6d4e6707234500350d8dad079eb508dca05530c85dc3a529ff2"
|
|
756
|
+
dependencies = [
|
|
757
|
+
"bumpalo",
|
|
758
|
+
"proc-macro2",
|
|
759
|
+
"quote",
|
|
760
|
+
"syn",
|
|
761
|
+
"wasm-bindgen-shared",
|
|
762
|
+
]
|
|
763
|
+
|
|
764
|
+
[[package]]
|
|
765
|
+
name = "wasm-bindgen-shared"
|
|
766
|
+
version = "0.2.117"
|
|
767
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
768
|
+
checksum = "39129a682a6d2d841b6c429d0c51e5cb0ed1a03829d8b3d1e69a011e62cb3d3b"
|
|
769
|
+
dependencies = [
|
|
770
|
+
"unicode-ident",
|
|
771
|
+
]
|
|
772
|
+
|
|
773
|
+
[[package]]
|
|
774
|
+
name = "windows-core"
|
|
775
|
+
version = "0.62.2"
|
|
776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
777
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
778
|
+
dependencies = [
|
|
779
|
+
"windows-implement",
|
|
780
|
+
"windows-interface",
|
|
781
|
+
"windows-link",
|
|
782
|
+
"windows-result",
|
|
783
|
+
"windows-strings",
|
|
784
|
+
]
|
|
785
|
+
|
|
786
|
+
[[package]]
|
|
787
|
+
name = "windows-implement"
|
|
788
|
+
version = "0.60.2"
|
|
789
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
790
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
791
|
+
dependencies = [
|
|
792
|
+
"proc-macro2",
|
|
793
|
+
"quote",
|
|
794
|
+
"syn",
|
|
795
|
+
]
|
|
796
|
+
|
|
797
|
+
[[package]]
|
|
798
|
+
name = "windows-interface"
|
|
799
|
+
version = "0.59.3"
|
|
800
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
801
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
802
|
+
dependencies = [
|
|
803
|
+
"proc-macro2",
|
|
804
|
+
"quote",
|
|
805
|
+
"syn",
|
|
806
|
+
]
|
|
807
|
+
|
|
808
|
+
[[package]]
|
|
809
|
+
name = "windows-link"
|
|
810
|
+
version = "0.2.1"
|
|
811
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
812
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
813
|
+
|
|
814
|
+
[[package]]
|
|
815
|
+
name = "windows-result"
|
|
816
|
+
version = "0.4.1"
|
|
817
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
818
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
819
|
+
dependencies = [
|
|
820
|
+
"windows-link",
|
|
821
|
+
]
|
|
822
|
+
|
|
823
|
+
[[package]]
|
|
824
|
+
name = "windows-strings"
|
|
825
|
+
version = "0.5.1"
|
|
826
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
827
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
828
|
+
dependencies = [
|
|
829
|
+
"windows-link",
|
|
830
|
+
]
|
|
831
|
+
|
|
832
|
+
[[package]]
|
|
833
|
+
name = "zerocopy"
|
|
834
|
+
version = "0.8.48"
|
|
835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
836
|
+
checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
|
|
837
|
+
dependencies = [
|
|
838
|
+
"zerocopy-derive",
|
|
839
|
+
]
|
|
840
|
+
|
|
841
|
+
[[package]]
|
|
842
|
+
name = "zerocopy-derive"
|
|
843
|
+
version = "0.8.48"
|
|
844
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
845
|
+
checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
|
|
846
|
+
dependencies = [
|
|
847
|
+
"proc-macro2",
|
|
848
|
+
"quote",
|
|
849
|
+
"syn",
|
|
850
|
+
]
|
|
851
|
+
|
|
852
|
+
[[package]]
|
|
853
|
+
name = "zmij"
|
|
854
|
+
version = "1.0.21"
|
|
855
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
856
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|