lylacore 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.
Files changed (80) hide show
  1. lylacore-0.1.0/Cargo.lock +1301 -0
  2. lylacore-0.1.0/Cargo.toml +33 -0
  3. lylacore-0.1.0/PKG-INFO +151 -0
  4. lylacore-0.1.0/README.md +123 -0
  5. lylacore-0.1.0/crates/coach-engine/Cargo.toml +23 -0
  6. lylacore-0.1.0/crates/coach-engine/benches/coach_bench.rs +120 -0
  7. lylacore-0.1.0/crates/coach-engine/src/domain/analysis.rs +106 -0
  8. lylacore-0.1.0/crates/coach-engine/src/domain/helpers.rs +133 -0
  9. lylacore-0.1.0/crates/coach-engine/src/domain/mod.rs +7 -0
  10. lylacore-0.1.0/crates/coach-engine/src/domain/pattern_learning.rs +74 -0
  11. lylacore-0.1.0/crates/coach-engine/src/domain/style_application.rs +36 -0
  12. lylacore-0.1.0/crates/coach-engine/src/domain/style_metadata.rs +62 -0
  13. lylacore-0.1.0/crates/coach-engine/src/error.rs +22 -0
  14. lylacore-0.1.0/crates/coach-engine/src/lib.rs +47 -0
  15. lylacore-0.1.0/crates/coach-engine/src/tests.rs +131 -0
  16. lylacore-0.1.0/crates/coach-engine/tests/integration_tests.rs +140 -0
  17. lylacore-0.1.0/crates/coach-engine/tests/style_application_tests.rs +96 -0
  18. lylacore-0.1.0/crates/pyo3-bindings/.coverage +0 -0
  19. lylacore-0.1.0/crates/pyo3-bindings/.hypothesis/constants/28b7dc69d2aac111 +4 -0
  20. lylacore-0.1.0/crates/pyo3-bindings/.hypothesis/examples/04e6b3400353b141/4c1f0c64b101355a +0 -0
  21. lylacore-0.1.0/crates/pyo3-bindings/.hypothesis/examples/04e6b3400353b141/5255986ed463d731 +0 -0
  22. lylacore-0.1.0/crates/pyo3-bindings/.hypothesis/examples/04e6b3400353b141/88275a3660e9c74a +1 -0
  23. lylacore-0.1.0/crates/pyo3-bindings/.hypothesis/examples/04e6b3400353b141/cffcbf94b1d045b2 +1 -0
  24. lylacore-0.1.0/crates/pyo3-bindings/.hypothesis/examples/4c1f0c64b101355a/f1581d7268d1024c +0 -0
  25. lylacore-0.1.0/crates/pyo3-bindings/.hypothesis/examples/5255986ed463d731/03c63bcfd3fd785b +0 -0
  26. lylacore-0.1.0/crates/pyo3-bindings/.hypothesis/examples/5255986ed463d731/03d49fbde44630bd +0 -0
  27. lylacore-0.1.0/crates/pyo3-bindings/.hypothesis/examples/5255986ed463d731/04288a6df5ca8a89 +1 -0
  28. lylacore-0.1.0/crates/pyo3-bindings/.hypothesis/examples/5255986ed463d731/06ce0044077be07b +0 -0
  29. lylacore-0.1.0/crates/pyo3-bindings/.hypothesis/examples/5255986ed463d731/cea1649f142044ac +0 -0
  30. lylacore-0.1.0/crates/pyo3-bindings/.hypothesis/examples/5255986ed463d731/fd8401c6e0e061c3 +0 -0
  31. lylacore-0.1.0/crates/pyo3-bindings/.hypothesis/examples/88275a3660e9c74a/eda7ade70ca72dc8 +1 -0
  32. lylacore-0.1.0/crates/pyo3-bindings/.hypothesis/examples/cffcbf94b1d045b2/84435bdafd396681 +0 -0
  33. lylacore-0.1.0/crates/pyo3-bindings/.hypothesis/examples/cffcbf94b1d045b2/ab8f0c296ad19448 +0 -0
  34. lylacore-0.1.0/crates/pyo3-bindings/.hypothesis/unicode_data/15.1.0/charmap.json.gz +0 -0
  35. lylacore-0.1.0/crates/pyo3-bindings/.hypothesis/unicode_data/15.1.0/codec-utf-8.json.gz +0 -0
  36. lylacore-0.1.0/crates/pyo3-bindings/Cargo.toml +25 -0
  37. lylacore-0.1.0/crates/pyo3-bindings/README.md +123 -0
  38. lylacore-0.1.0/crates/pyo3-bindings/RELEASE.md +260 -0
  39. lylacore-0.1.0/crates/pyo3-bindings/docs/api/functions.md +458 -0
  40. lylacore-0.1.0/crates/pyo3-bindings/docs/guides/migration.md +407 -0
  41. lylacore-0.1.0/crates/pyo3-bindings/docs/index.md +117 -0
  42. lylacore-0.1.0/crates/pyo3-bindings/docs/quickstart.md +276 -0
  43. lylacore-0.1.0/crates/pyo3-bindings/docs/security.md +326 -0
  44. lylacore-0.1.0/crates/pyo3-bindings/mkdocs.yml +78 -0
  45. lylacore-0.1.0/crates/pyo3-bindings/src/crypto.rs +186 -0
  46. lylacore-0.1.0/crates/pyo3-bindings/src/error.rs +10 -0
  47. lylacore-0.1.0/crates/pyo3-bindings/src/lib.rs +21 -0
  48. lylacore-0.1.0/crates/pyo3-bindings/test_bindings.py +221 -0
  49. lylacore-0.1.0/crates/pyo3-bindings/test_passphrase_validation.py +41 -0
  50. lylacore-0.1.0/crates/pyo3-bindings/test_results.txt +0 -0
  51. lylacore-0.1.0/crates/pyo3-bindings/tests/conftest.py +90 -0
  52. lylacore-0.1.0/crates/pyo3-bindings/tests/test_async_stress.py +88 -0
  53. lylacore-0.1.0/crates/pyo3-bindings/tests/test_auth_tag.py +142 -0
  54. lylacore-0.1.0/crates/pyo3-bindings/tests/test_cross_language.py +154 -0
  55. lylacore-0.1.0/crates/pyo3-bindings/tests/test_decrypt.py +211 -0
  56. lylacore-0.1.0/crates/pyo3-bindings/tests/test_encrypt.py +165 -0
  57. lylacore-0.1.0/crates/pyo3-bindings/tests/test_integration.py +248 -0
  58. lylacore-0.1.0/crates/pyo3-bindings/tests/test_key.py +134 -0
  59. lylacore-0.1.0/crates/pyo3-bindings/tests/test_memory.py +101 -0
  60. lylacore-0.1.0/crates/pyo3-bindings/tests/test_nonce.py +133 -0
  61. lylacore-0.1.0/crates/pyo3-bindings/tests/test_properties.py +145 -0
  62. lylacore-0.1.0/crates/pyo3-bindings/tests/test_salt.py +112 -0
  63. lylacore-0.1.0/crates/soul-crypto/Cargo.toml +28 -0
  64. lylacore-0.1.0/crates/soul-crypto/benches/crypto_bench.rs +136 -0
  65. lylacore-0.1.0/crates/soul-crypto/src/domain/encryption.rs +46 -0
  66. lylacore-0.1.0/crates/soul-crypto/src/domain/key_derivation.rs +101 -0
  67. lylacore-0.1.0/crates/soul-crypto/src/domain/mod.rs +5 -0
  68. lylacore-0.1.0/crates/soul-crypto/src/domain/types.rs +130 -0
  69. lylacore-0.1.0/crates/soul-crypto/src/error.rs +38 -0
  70. lylacore-0.1.0/crates/soul-crypto/src/lib.rs +61 -0
  71. lylacore-0.1.0/crates/soul-crypto/src/ports/mod.rs +3 -0
  72. lylacore-0.1.0/crates/soul-crypto/src/ports/random.rs +18 -0
  73. lylacore-0.1.0/crates/soul-crypto/src/tests.rs +151 -0
  74. lylacore-0.1.0/crates/soul-crypto/tests/common.rs +69 -0
  75. lylacore-0.1.0/crates/soul-crypto/tests/encryption_tests.rs +143 -0
  76. lylacore-0.1.0/crates/soul-crypto/tests/integration_tests.rs +156 -0
  77. lylacore-0.1.0/crates/soul-crypto/tests/key_derivation_tests.rs +104 -0
  78. lylacore-0.1.0/pyproject.toml +80 -0
  79. lylacore-0.1.0/python/lylacore/__init__.py +38 -0
  80. lylacore-0.1.0/python/lylacore/__init__.pyi +277 -0
@@ -0,0 +1,1301 @@
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 = "aho-corasick"
42
+ version = "1.1.4"
43
+ source = "registry+https://github.com/rust-lang/crates.io-index"
44
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
45
+ dependencies = [
46
+ "memchr",
47
+ ]
48
+
49
+ [[package]]
50
+ name = "anes"
51
+ version = "0.1.6"
52
+ source = "registry+https://github.com/rust-lang/crates.io-index"
53
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
54
+
55
+ [[package]]
56
+ name = "anstyle"
57
+ version = "1.0.13"
58
+ source = "registry+https://github.com/rust-lang/crates.io-index"
59
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
60
+
61
+ [[package]]
62
+ name = "argon2"
63
+ version = "0.5.3"
64
+ source = "registry+https://github.com/rust-lang/crates.io-index"
65
+ checksum = "3c3610892ee6e0cbce8ae2700349fcf8f98adb0dbfbee85aec3c9179d29cc072"
66
+ dependencies = [
67
+ "base64ct",
68
+ "blake2",
69
+ "cpufeatures",
70
+ "password-hash",
71
+ ]
72
+
73
+ [[package]]
74
+ name = "autocfg"
75
+ version = "1.5.0"
76
+ source = "registry+https://github.com/rust-lang/crates.io-index"
77
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
78
+
79
+ [[package]]
80
+ name = "base64ct"
81
+ version = "1.8.3"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
84
+
85
+ [[package]]
86
+ name = "bitflags"
87
+ version = "2.11.0"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
90
+
91
+ [[package]]
92
+ name = "blake2"
93
+ version = "0.10.6"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe"
96
+ dependencies = [
97
+ "digest",
98
+ ]
99
+
100
+ [[package]]
101
+ name = "block-buffer"
102
+ version = "0.10.4"
103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
104
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
105
+ dependencies = [
106
+ "generic-array",
107
+ ]
108
+
109
+ [[package]]
110
+ name = "bumpalo"
111
+ version = "3.20.2"
112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
113
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
114
+
115
+ [[package]]
116
+ name = "cast"
117
+ version = "0.3.0"
118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
119
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
120
+
121
+ [[package]]
122
+ name = "cfg-if"
123
+ version = "1.0.4"
124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
125
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
126
+
127
+ [[package]]
128
+ name = "ciborium"
129
+ version = "0.2.2"
130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
131
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
132
+ dependencies = [
133
+ "ciborium-io",
134
+ "ciborium-ll",
135
+ "serde",
136
+ ]
137
+
138
+ [[package]]
139
+ name = "ciborium-io"
140
+ version = "0.2.2"
141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
142
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
143
+
144
+ [[package]]
145
+ name = "ciborium-ll"
146
+ version = "0.2.2"
147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
148
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
149
+ dependencies = [
150
+ "ciborium-io",
151
+ "half",
152
+ ]
153
+
154
+ [[package]]
155
+ name = "cipher"
156
+ version = "0.4.4"
157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
158
+ checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
159
+ dependencies = [
160
+ "crypto-common",
161
+ "inout",
162
+ ]
163
+
164
+ [[package]]
165
+ name = "clap"
166
+ version = "4.5.60"
167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
168
+ checksum = "2797f34da339ce31042b27d23607e051786132987f595b02ba4f6a6dffb7030a"
169
+ dependencies = [
170
+ "clap_builder",
171
+ ]
172
+
173
+ [[package]]
174
+ name = "clap_builder"
175
+ version = "4.5.60"
176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
177
+ checksum = "24a241312cea5059b13574bb9b3861cabf758b879c15190b37b6d6fd63ab6876"
178
+ dependencies = [
179
+ "anstyle",
180
+ "clap_lex",
181
+ ]
182
+
183
+ [[package]]
184
+ name = "clap_lex"
185
+ version = "1.0.0"
186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
187
+ checksum = "3a822ea5bc7590f9d40f1ba12c0dc3c2760f3482c6984db1573ad11031420831"
188
+
189
+ [[package]]
190
+ name = "coach-engine"
191
+ version = "0.1.0"
192
+ dependencies = [
193
+ "criterion",
194
+ "once_cell",
195
+ "regex",
196
+ "serde",
197
+ "serde_json",
198
+ "thiserror",
199
+ ]
200
+
201
+ [[package]]
202
+ name = "convert_case"
203
+ version = "0.6.0"
204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
205
+ checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
206
+ dependencies = [
207
+ "unicode-segmentation",
208
+ ]
209
+
210
+ [[package]]
211
+ name = "cpufeatures"
212
+ version = "0.2.17"
213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
214
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
215
+ dependencies = [
216
+ "libc",
217
+ ]
218
+
219
+ [[package]]
220
+ name = "criterion"
221
+ version = "0.5.1"
222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
223
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
224
+ dependencies = [
225
+ "anes",
226
+ "cast",
227
+ "ciborium",
228
+ "clap",
229
+ "criterion-plot",
230
+ "is-terminal",
231
+ "itertools",
232
+ "num-traits",
233
+ "once_cell",
234
+ "oorandom",
235
+ "plotters",
236
+ "rayon",
237
+ "regex",
238
+ "serde",
239
+ "serde_derive",
240
+ "serde_json",
241
+ "tinytemplate",
242
+ "walkdir",
243
+ ]
244
+
245
+ [[package]]
246
+ name = "criterion-plot"
247
+ version = "0.5.0"
248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
249
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
250
+ dependencies = [
251
+ "cast",
252
+ "itertools",
253
+ ]
254
+
255
+ [[package]]
256
+ name = "crossbeam-deque"
257
+ version = "0.8.6"
258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
259
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
260
+ dependencies = [
261
+ "crossbeam-epoch",
262
+ "crossbeam-utils",
263
+ ]
264
+
265
+ [[package]]
266
+ name = "crossbeam-epoch"
267
+ version = "0.9.18"
268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
269
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
270
+ dependencies = [
271
+ "crossbeam-utils",
272
+ ]
273
+
274
+ [[package]]
275
+ name = "crossbeam-utils"
276
+ version = "0.8.21"
277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
278
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
279
+
280
+ [[package]]
281
+ name = "crunchy"
282
+ version = "0.2.4"
283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
284
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
285
+
286
+ [[package]]
287
+ name = "crypto-common"
288
+ version = "0.1.7"
289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
290
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
291
+ dependencies = [
292
+ "generic-array",
293
+ "rand_core",
294
+ "typenum",
295
+ ]
296
+
297
+ [[package]]
298
+ name = "ctor"
299
+ version = "0.2.9"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501"
302
+ dependencies = [
303
+ "quote",
304
+ "syn",
305
+ ]
306
+
307
+ [[package]]
308
+ name = "ctr"
309
+ version = "0.9.2"
310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
311
+ checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
312
+ dependencies = [
313
+ "cipher",
314
+ ]
315
+
316
+ [[package]]
317
+ name = "digest"
318
+ version = "0.10.7"
319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
320
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
321
+ dependencies = [
322
+ "block-buffer",
323
+ "crypto-common",
324
+ "subtle",
325
+ ]
326
+
327
+ [[package]]
328
+ name = "either"
329
+ version = "1.15.0"
330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
331
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
332
+
333
+ [[package]]
334
+ name = "futures"
335
+ version = "0.3.32"
336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
337
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
338
+ dependencies = [
339
+ "futures-channel",
340
+ "futures-core",
341
+ "futures-executor",
342
+ "futures-io",
343
+ "futures-sink",
344
+ "futures-task",
345
+ "futures-util",
346
+ ]
347
+
348
+ [[package]]
349
+ name = "futures-channel"
350
+ version = "0.3.32"
351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
352
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
353
+ dependencies = [
354
+ "futures-core",
355
+ "futures-sink",
356
+ ]
357
+
358
+ [[package]]
359
+ name = "futures-core"
360
+ version = "0.3.32"
361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
362
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
363
+
364
+ [[package]]
365
+ name = "futures-executor"
366
+ version = "0.3.32"
367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
368
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
369
+ dependencies = [
370
+ "futures-core",
371
+ "futures-task",
372
+ "futures-util",
373
+ ]
374
+
375
+ [[package]]
376
+ name = "futures-io"
377
+ version = "0.3.32"
378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
379
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
380
+
381
+ [[package]]
382
+ name = "futures-macro"
383
+ version = "0.3.32"
384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
385
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
386
+ dependencies = [
387
+ "proc-macro2",
388
+ "quote",
389
+ "syn",
390
+ ]
391
+
392
+ [[package]]
393
+ name = "futures-sink"
394
+ version = "0.3.32"
395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
396
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
397
+
398
+ [[package]]
399
+ name = "futures-task"
400
+ version = "0.3.32"
401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
402
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
403
+
404
+ [[package]]
405
+ name = "futures-util"
406
+ version = "0.3.32"
407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
408
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
409
+ dependencies = [
410
+ "futures-channel",
411
+ "futures-core",
412
+ "futures-io",
413
+ "futures-macro",
414
+ "futures-sink",
415
+ "futures-task",
416
+ "memchr",
417
+ "pin-project-lite",
418
+ "slab",
419
+ ]
420
+
421
+ [[package]]
422
+ name = "generic-array"
423
+ version = "0.14.7"
424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
425
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
426
+ dependencies = [
427
+ "typenum",
428
+ "version_check",
429
+ ]
430
+
431
+ [[package]]
432
+ name = "getrandom"
433
+ version = "0.2.17"
434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
435
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
436
+ dependencies = [
437
+ "cfg-if",
438
+ "libc",
439
+ "wasi",
440
+ ]
441
+
442
+ [[package]]
443
+ name = "ghash"
444
+ version = "0.5.1"
445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
446
+ checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1"
447
+ dependencies = [
448
+ "opaque-debug",
449
+ "polyval",
450
+ ]
451
+
452
+ [[package]]
453
+ name = "half"
454
+ version = "2.7.1"
455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
456
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
457
+ dependencies = [
458
+ "cfg-if",
459
+ "crunchy",
460
+ "zerocopy",
461
+ ]
462
+
463
+ [[package]]
464
+ name = "heck"
465
+ version = "0.5.0"
466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
467
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
468
+
469
+ [[package]]
470
+ name = "hermit-abi"
471
+ version = "0.5.2"
472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
473
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
474
+
475
+ [[package]]
476
+ name = "hex"
477
+ version = "0.4.3"
478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
479
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
480
+
481
+ [[package]]
482
+ name = "hmac"
483
+ version = "0.12.1"
484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
485
+ checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
486
+ dependencies = [
487
+ "digest",
488
+ ]
489
+
490
+ [[package]]
491
+ name = "indoc"
492
+ version = "2.0.7"
493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
494
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
495
+ dependencies = [
496
+ "rustversion",
497
+ ]
498
+
499
+ [[package]]
500
+ name = "inout"
501
+ version = "0.1.4"
502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
503
+ checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
504
+ dependencies = [
505
+ "generic-array",
506
+ ]
507
+
508
+ [[package]]
509
+ name = "is-terminal"
510
+ version = "0.4.17"
511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
512
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
513
+ dependencies = [
514
+ "hermit-abi",
515
+ "libc",
516
+ "windows-sys",
517
+ ]
518
+
519
+ [[package]]
520
+ name = "itertools"
521
+ version = "0.10.5"
522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
523
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
524
+ dependencies = [
525
+ "either",
526
+ ]
527
+
528
+ [[package]]
529
+ name = "itoa"
530
+ version = "1.0.17"
531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
532
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
533
+
534
+ [[package]]
535
+ name = "js-sys"
536
+ version = "0.3.91"
537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
538
+ checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c"
539
+ dependencies = [
540
+ "once_cell",
541
+ "wasm-bindgen",
542
+ ]
543
+
544
+ [[package]]
545
+ name = "libc"
546
+ version = "0.2.183"
547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
548
+ checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
549
+
550
+ [[package]]
551
+ name = "libloading"
552
+ version = "0.8.9"
553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
554
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
555
+ dependencies = [
556
+ "cfg-if",
557
+ "windows-link",
558
+ ]
559
+
560
+ [[package]]
561
+ name = "lylacore-pyo3"
562
+ version = "0.1.0"
563
+ dependencies = [
564
+ "coach-engine",
565
+ "hex",
566
+ "pyo3",
567
+ "pyo3-async-runtimes",
568
+ "pyo3-build-config",
569
+ "soul-crypto",
570
+ "tokio",
571
+ ]
572
+
573
+ [[package]]
574
+ name = "memchr"
575
+ version = "2.8.0"
576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
577
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
578
+
579
+ [[package]]
580
+ name = "memoffset"
581
+ version = "0.9.1"
582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
583
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
584
+ dependencies = [
585
+ "autocfg",
586
+ ]
587
+
588
+ [[package]]
589
+ name = "napi"
590
+ version = "2.16.17"
591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
592
+ checksum = "55740c4ae1d8696773c78fdafd5d0e5fe9bc9f1b071c7ba493ba5c413a9184f3"
593
+ dependencies = [
594
+ "bitflags",
595
+ "ctor",
596
+ "napi-derive",
597
+ "napi-sys",
598
+ "once_cell",
599
+ "tokio",
600
+ ]
601
+
602
+ [[package]]
603
+ name = "napi-bindings"
604
+ version = "0.1.0"
605
+ dependencies = [
606
+ "coach-engine",
607
+ "napi",
608
+ "napi-build",
609
+ "napi-derive",
610
+ "serde",
611
+ "serde_json",
612
+ "soul-crypto",
613
+ "tokio",
614
+ ]
615
+
616
+ [[package]]
617
+ name = "napi-build"
618
+ version = "2.3.1"
619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
620
+ checksum = "d376940fd5b723c6893cd1ee3f33abbfd86acb1cd1ec079f3ab04a2a3bc4d3b1"
621
+
622
+ [[package]]
623
+ name = "napi-derive"
624
+ version = "2.16.13"
625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
626
+ checksum = "7cbe2585d8ac223f7d34f13701434b9d5f4eb9c332cccce8dee57ea18ab8ab0c"
627
+ dependencies = [
628
+ "cfg-if",
629
+ "convert_case",
630
+ "napi-derive-backend",
631
+ "proc-macro2",
632
+ "quote",
633
+ "syn",
634
+ ]
635
+
636
+ [[package]]
637
+ name = "napi-derive-backend"
638
+ version = "1.0.75"
639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
640
+ checksum = "1639aaa9eeb76e91c6ae66da8ce3e89e921cd3885e99ec85f4abacae72fc91bf"
641
+ dependencies = [
642
+ "convert_case",
643
+ "once_cell",
644
+ "proc-macro2",
645
+ "quote",
646
+ "regex",
647
+ "semver",
648
+ "syn",
649
+ ]
650
+
651
+ [[package]]
652
+ name = "napi-sys"
653
+ version = "2.4.0"
654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
655
+ checksum = "427802e8ec3a734331fec1035594a210ce1ff4dc5bc1950530920ab717964ea3"
656
+ dependencies = [
657
+ "libloading",
658
+ ]
659
+
660
+ [[package]]
661
+ name = "num-traits"
662
+ version = "0.2.19"
663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
664
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
665
+ dependencies = [
666
+ "autocfg",
667
+ ]
668
+
669
+ [[package]]
670
+ name = "once_cell"
671
+ version = "1.21.3"
672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
673
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
674
+
675
+ [[package]]
676
+ name = "oorandom"
677
+ version = "11.1.5"
678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
679
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
680
+
681
+ [[package]]
682
+ name = "opaque-debug"
683
+ version = "0.3.1"
684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
685
+ checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
686
+
687
+ [[package]]
688
+ name = "password-hash"
689
+ version = "0.5.0"
690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
691
+ checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166"
692
+ dependencies = [
693
+ "base64ct",
694
+ "rand_core",
695
+ "subtle",
696
+ ]
697
+
698
+ [[package]]
699
+ name = "pbkdf2"
700
+ version = "0.12.2"
701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
702
+ checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
703
+ dependencies = [
704
+ "digest",
705
+ "hmac",
706
+ ]
707
+
708
+ [[package]]
709
+ name = "pin-project-lite"
710
+ version = "0.2.17"
711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
712
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
713
+
714
+ [[package]]
715
+ name = "plotters"
716
+ version = "0.3.7"
717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
718
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
719
+ dependencies = [
720
+ "num-traits",
721
+ "plotters-backend",
722
+ "plotters-svg",
723
+ "wasm-bindgen",
724
+ "web-sys",
725
+ ]
726
+
727
+ [[package]]
728
+ name = "plotters-backend"
729
+ version = "0.3.7"
730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
731
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
732
+
733
+ [[package]]
734
+ name = "plotters-svg"
735
+ version = "0.3.7"
736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
737
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
738
+ dependencies = [
739
+ "plotters-backend",
740
+ ]
741
+
742
+ [[package]]
743
+ name = "polyval"
744
+ version = "0.6.2"
745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
746
+ checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25"
747
+ dependencies = [
748
+ "cfg-if",
749
+ "cpufeatures",
750
+ "opaque-debug",
751
+ "universal-hash",
752
+ ]
753
+
754
+ [[package]]
755
+ name = "portable-atomic"
756
+ version = "1.13.1"
757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
758
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
759
+
760
+ [[package]]
761
+ name = "ppv-lite86"
762
+ version = "0.2.21"
763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
764
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
765
+ dependencies = [
766
+ "zerocopy",
767
+ ]
768
+
769
+ [[package]]
770
+ name = "proc-macro2"
771
+ version = "1.0.106"
772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
773
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
774
+ dependencies = [
775
+ "unicode-ident",
776
+ ]
777
+
778
+ [[package]]
779
+ name = "pyo3"
780
+ version = "0.22.6"
781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
782
+ checksum = "f402062616ab18202ae8319da13fa4279883a2b8a9d9f83f20dbade813ce1884"
783
+ dependencies = [
784
+ "cfg-if",
785
+ "indoc",
786
+ "libc",
787
+ "memoffset",
788
+ "once_cell",
789
+ "portable-atomic",
790
+ "pyo3-build-config",
791
+ "pyo3-ffi",
792
+ "pyo3-macros",
793
+ "unindent",
794
+ ]
795
+
796
+ [[package]]
797
+ name = "pyo3-async-runtimes"
798
+ version = "0.22.0"
799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
800
+ checksum = "2529f0be73ffd2be0cc43c013a640796558aa12d7ca0aab5cc14f375b4733031"
801
+ dependencies = [
802
+ "futures",
803
+ "once_cell",
804
+ "pin-project-lite",
805
+ "pyo3",
806
+ "tokio",
807
+ ]
808
+
809
+ [[package]]
810
+ name = "pyo3-build-config"
811
+ version = "0.22.6"
812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
813
+ checksum = "b14b5775b5ff446dd1056212d778012cbe8a0fbffd368029fd9e25b514479c38"
814
+ dependencies = [
815
+ "once_cell",
816
+ "target-lexicon",
817
+ ]
818
+
819
+ [[package]]
820
+ name = "pyo3-ffi"
821
+ version = "0.22.6"
822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
823
+ checksum = "9ab5bcf04a2cdcbb50c7d6105de943f543f9ed92af55818fd17b660390fc8636"
824
+ dependencies = [
825
+ "libc",
826
+ "pyo3-build-config",
827
+ ]
828
+
829
+ [[package]]
830
+ name = "pyo3-macros"
831
+ version = "0.22.6"
832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
833
+ checksum = "0fd24d897903a9e6d80b968368a34e1525aeb719d568dba8b3d4bfa5dc67d453"
834
+ dependencies = [
835
+ "proc-macro2",
836
+ "pyo3-macros-backend",
837
+ "quote",
838
+ "syn",
839
+ ]
840
+
841
+ [[package]]
842
+ name = "pyo3-macros-backend"
843
+ version = "0.22.6"
844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
845
+ checksum = "36c011a03ba1e50152b4b394b479826cad97e7a21eb52df179cd91ac411cbfbe"
846
+ dependencies = [
847
+ "heck",
848
+ "proc-macro2",
849
+ "pyo3-build-config",
850
+ "quote",
851
+ "syn",
852
+ ]
853
+
854
+ [[package]]
855
+ name = "quote"
856
+ version = "1.0.45"
857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
858
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
859
+ dependencies = [
860
+ "proc-macro2",
861
+ ]
862
+
863
+ [[package]]
864
+ name = "rand"
865
+ version = "0.8.5"
866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
867
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
868
+ dependencies = [
869
+ "libc",
870
+ "rand_chacha",
871
+ "rand_core",
872
+ ]
873
+
874
+ [[package]]
875
+ name = "rand_chacha"
876
+ version = "0.3.1"
877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
878
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
879
+ dependencies = [
880
+ "ppv-lite86",
881
+ "rand_core",
882
+ ]
883
+
884
+ [[package]]
885
+ name = "rand_core"
886
+ version = "0.6.4"
887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
888
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
889
+ dependencies = [
890
+ "getrandom",
891
+ ]
892
+
893
+ [[package]]
894
+ name = "rayon"
895
+ version = "1.11.0"
896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
897
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
898
+ dependencies = [
899
+ "either",
900
+ "rayon-core",
901
+ ]
902
+
903
+ [[package]]
904
+ name = "rayon-core"
905
+ version = "1.13.0"
906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
907
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
908
+ dependencies = [
909
+ "crossbeam-deque",
910
+ "crossbeam-utils",
911
+ ]
912
+
913
+ [[package]]
914
+ name = "regex"
915
+ version = "1.12.3"
916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
917
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
918
+ dependencies = [
919
+ "aho-corasick",
920
+ "memchr",
921
+ "regex-automata",
922
+ "regex-syntax",
923
+ ]
924
+
925
+ [[package]]
926
+ name = "regex-automata"
927
+ version = "0.4.14"
928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
929
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
930
+ dependencies = [
931
+ "aho-corasick",
932
+ "memchr",
933
+ "regex-syntax",
934
+ ]
935
+
936
+ [[package]]
937
+ name = "regex-syntax"
938
+ version = "0.8.10"
939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
940
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
941
+
942
+ [[package]]
943
+ name = "rustversion"
944
+ version = "1.0.22"
945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
946
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
947
+
948
+ [[package]]
949
+ name = "salsa20"
950
+ version = "0.10.2"
951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
952
+ checksum = "97a22f5af31f73a954c10289c93e8a50cc23d971e80ee446f1f6f7137a088213"
953
+ dependencies = [
954
+ "cipher",
955
+ ]
956
+
957
+ [[package]]
958
+ name = "same-file"
959
+ version = "1.0.6"
960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
961
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
962
+ dependencies = [
963
+ "winapi-util",
964
+ ]
965
+
966
+ [[package]]
967
+ name = "scrypt"
968
+ version = "0.11.0"
969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
970
+ checksum = "0516a385866c09368f0b5bcd1caff3366aace790fcd46e2bb032697bb172fd1f"
971
+ dependencies = [
972
+ "password-hash",
973
+ "pbkdf2",
974
+ "salsa20",
975
+ "sha2",
976
+ ]
977
+
978
+ [[package]]
979
+ name = "semver"
980
+ version = "1.0.27"
981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
982
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
983
+
984
+ [[package]]
985
+ name = "serde"
986
+ version = "1.0.228"
987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
988
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
989
+ dependencies = [
990
+ "serde_core",
991
+ "serde_derive",
992
+ ]
993
+
994
+ [[package]]
995
+ name = "serde_core"
996
+ version = "1.0.228"
997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
998
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
999
+ dependencies = [
1000
+ "serde_derive",
1001
+ ]
1002
+
1003
+ [[package]]
1004
+ name = "serde_derive"
1005
+ version = "1.0.228"
1006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1007
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1008
+ dependencies = [
1009
+ "proc-macro2",
1010
+ "quote",
1011
+ "syn",
1012
+ ]
1013
+
1014
+ [[package]]
1015
+ name = "serde_json"
1016
+ version = "1.0.149"
1017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1018
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1019
+ dependencies = [
1020
+ "itoa",
1021
+ "memchr",
1022
+ "serde",
1023
+ "serde_core",
1024
+ "zmij",
1025
+ ]
1026
+
1027
+ [[package]]
1028
+ name = "sha2"
1029
+ version = "0.10.9"
1030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1031
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
1032
+ dependencies = [
1033
+ "cfg-if",
1034
+ "cpufeatures",
1035
+ "digest",
1036
+ ]
1037
+
1038
+ [[package]]
1039
+ name = "slab"
1040
+ version = "0.4.12"
1041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1042
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1043
+
1044
+ [[package]]
1045
+ name = "soul-crypto"
1046
+ version = "0.1.0"
1047
+ dependencies = [
1048
+ "aes-gcm",
1049
+ "argon2",
1050
+ "criterion",
1051
+ "hex",
1052
+ "pbkdf2",
1053
+ "rand",
1054
+ "scrypt",
1055
+ "serde_json",
1056
+ "sha2",
1057
+ "thiserror",
1058
+ "tokio",
1059
+ "zeroize",
1060
+ ]
1061
+
1062
+ [[package]]
1063
+ name = "subtle"
1064
+ version = "2.6.1"
1065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1066
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1067
+
1068
+ [[package]]
1069
+ name = "syn"
1070
+ version = "2.0.117"
1071
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1072
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1073
+ dependencies = [
1074
+ "proc-macro2",
1075
+ "quote",
1076
+ "unicode-ident",
1077
+ ]
1078
+
1079
+ [[package]]
1080
+ name = "target-lexicon"
1081
+ version = "0.12.16"
1082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1083
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
1084
+
1085
+ [[package]]
1086
+ name = "thiserror"
1087
+ version = "1.0.69"
1088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1089
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1090
+ dependencies = [
1091
+ "thiserror-impl",
1092
+ ]
1093
+
1094
+ [[package]]
1095
+ name = "thiserror-impl"
1096
+ version = "1.0.69"
1097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1098
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1099
+ dependencies = [
1100
+ "proc-macro2",
1101
+ "quote",
1102
+ "syn",
1103
+ ]
1104
+
1105
+ [[package]]
1106
+ name = "tinytemplate"
1107
+ version = "1.2.1"
1108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1109
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
1110
+ dependencies = [
1111
+ "serde",
1112
+ "serde_json",
1113
+ ]
1114
+
1115
+ [[package]]
1116
+ name = "tokio"
1117
+ version = "1.50.0"
1118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1119
+ checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d"
1120
+ dependencies = [
1121
+ "pin-project-lite",
1122
+ "tokio-macros",
1123
+ ]
1124
+
1125
+ [[package]]
1126
+ name = "tokio-macros"
1127
+ version = "2.6.1"
1128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1129
+ checksum = "5c55a2eff8b69ce66c84f85e1da1c233edc36ceb85a2058d11b0d6a3c7e7569c"
1130
+ dependencies = [
1131
+ "proc-macro2",
1132
+ "quote",
1133
+ "syn",
1134
+ ]
1135
+
1136
+ [[package]]
1137
+ name = "typenum"
1138
+ version = "1.19.0"
1139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1140
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
1141
+
1142
+ [[package]]
1143
+ name = "unicode-ident"
1144
+ version = "1.0.24"
1145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1146
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1147
+
1148
+ [[package]]
1149
+ name = "unicode-segmentation"
1150
+ version = "1.12.0"
1151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1152
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
1153
+
1154
+ [[package]]
1155
+ name = "unindent"
1156
+ version = "0.2.4"
1157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1158
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
1159
+
1160
+ [[package]]
1161
+ name = "universal-hash"
1162
+ version = "0.5.1"
1163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1164
+ checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
1165
+ dependencies = [
1166
+ "crypto-common",
1167
+ "subtle",
1168
+ ]
1169
+
1170
+ [[package]]
1171
+ name = "version_check"
1172
+ version = "0.9.5"
1173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1174
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1175
+
1176
+ [[package]]
1177
+ name = "walkdir"
1178
+ version = "2.5.0"
1179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1180
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1181
+ dependencies = [
1182
+ "same-file",
1183
+ "winapi-util",
1184
+ ]
1185
+
1186
+ [[package]]
1187
+ name = "wasi"
1188
+ version = "0.11.1+wasi-snapshot-preview1"
1189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1190
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1191
+
1192
+ [[package]]
1193
+ name = "wasm-bindgen"
1194
+ version = "0.2.114"
1195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1196
+ checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e"
1197
+ dependencies = [
1198
+ "cfg-if",
1199
+ "once_cell",
1200
+ "rustversion",
1201
+ "wasm-bindgen-macro",
1202
+ "wasm-bindgen-shared",
1203
+ ]
1204
+
1205
+ [[package]]
1206
+ name = "wasm-bindgen-macro"
1207
+ version = "0.2.114"
1208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1209
+ checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6"
1210
+ dependencies = [
1211
+ "quote",
1212
+ "wasm-bindgen-macro-support",
1213
+ ]
1214
+
1215
+ [[package]]
1216
+ name = "wasm-bindgen-macro-support"
1217
+ version = "0.2.114"
1218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1219
+ checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3"
1220
+ dependencies = [
1221
+ "bumpalo",
1222
+ "proc-macro2",
1223
+ "quote",
1224
+ "syn",
1225
+ "wasm-bindgen-shared",
1226
+ ]
1227
+
1228
+ [[package]]
1229
+ name = "wasm-bindgen-shared"
1230
+ version = "0.2.114"
1231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1232
+ checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16"
1233
+ dependencies = [
1234
+ "unicode-ident",
1235
+ ]
1236
+
1237
+ [[package]]
1238
+ name = "web-sys"
1239
+ version = "0.3.91"
1240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1241
+ checksum = "854ba17bb104abfb26ba36da9729addc7ce7f06f5c0f90f3c391f8461cca21f9"
1242
+ dependencies = [
1243
+ "js-sys",
1244
+ "wasm-bindgen",
1245
+ ]
1246
+
1247
+ [[package]]
1248
+ name = "winapi-util"
1249
+ version = "0.1.11"
1250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1251
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1252
+ dependencies = [
1253
+ "windows-sys",
1254
+ ]
1255
+
1256
+ [[package]]
1257
+ name = "windows-link"
1258
+ version = "0.2.1"
1259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1260
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1261
+
1262
+ [[package]]
1263
+ name = "windows-sys"
1264
+ version = "0.61.2"
1265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1266
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1267
+ dependencies = [
1268
+ "windows-link",
1269
+ ]
1270
+
1271
+ [[package]]
1272
+ name = "zerocopy"
1273
+ version = "0.8.42"
1274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1275
+ checksum = "f2578b716f8a7a858b7f02d5bd870c14bf4ddbbcf3a4c05414ba6503640505e3"
1276
+ dependencies = [
1277
+ "zerocopy-derive",
1278
+ ]
1279
+
1280
+ [[package]]
1281
+ name = "zerocopy-derive"
1282
+ version = "0.8.42"
1283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1284
+ checksum = "7e6cc098ea4d3bd6246687de65af3f920c430e236bee1e3bf2e441463f08a02f"
1285
+ dependencies = [
1286
+ "proc-macro2",
1287
+ "quote",
1288
+ "syn",
1289
+ ]
1290
+
1291
+ [[package]]
1292
+ name = "zeroize"
1293
+ version = "1.8.2"
1294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1295
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
1296
+
1297
+ [[package]]
1298
+ name = "zmij"
1299
+ version = "1.0.21"
1300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1301
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"