ua-stress-engine 1.0.1__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 (30) hide show
  1. ua_stress_engine-1.0.1/Cargo.lock +653 -0
  2. ua_stress_engine-1.0.1/Cargo.toml +11 -0
  3. ua_stress_engine-1.0.1/LICENSE +661 -0
  4. ua_stress_engine-1.0.1/PKG-INFO +315 -0
  5. ua_stress_engine-1.0.1/README.md +276 -0
  6. ua_stress_engine-1.0.1/crates/builder/Cargo.toml +25 -0
  7. ua_stress_engine-1.0.1/crates/builder/src/main.rs +299 -0
  8. ua_stress_engine-1.0.1/crates/builder/src/schema_export.rs +16 -0
  9. ua_stress_engine-1.0.1/crates/core/Cargo.toml +25 -0
  10. ua_stress_engine-1.0.1/crates/core/src/academic_tests.rs +616 -0
  11. ua_stress_engine-1.0.1/crates/core/src/data.rs +335 -0
  12. ua_stress_engine-1.0.1/crates/core/src/dict.rs +441 -0
  13. ua_stress_engine-1.0.1/crates/core/src/geminate.rs +137 -0
  14. ua_stress_engine-1.0.1/crates/core/src/lib.rs +41 -0
  15. ua_stress_engine-1.0.1/crates/core/src/normalize.rs +96 -0
  16. ua_stress_engine-1.0.1/crates/core/src/palatalization.rs +161 -0
  17. ua_stress_engine-1.0.1/crates/core/src/pipeline.rs +440 -0
  18. ua_stress_engine-1.0.1/crates/core/src/place.rs +149 -0
  19. ua_stress_engine-1.0.1/crates/core/src/syllabifier.rs +322 -0
  20. ua_stress_engine-1.0.1/crates/core/src/tokenizer.rs +417 -0
  21. ua_stress_engine-1.0.1/crates/core/src/types.rs +355 -0
  22. ua_stress_engine-1.0.1/crates/core/src/v_allophones.rs +110 -0
  23. ua_stress_engine-1.0.1/crates/core/src/voicing.rs +171 -0
  24. ua_stress_engine-1.0.1/crates/core/src/vowel_allophones.rs +152 -0
  25. ua_stress_engine-1.0.1/crates/python/Cargo.toml +15 -0
  26. ua_stress_engine-1.0.1/crates/python/src/lib.rs +226 -0
  27. ua_stress_engine-1.0.1/crates/wasm/Cargo.toml +19 -0
  28. ua_stress_engine-1.0.1/crates/wasm/src/lib.rs +300 -0
  29. ua_stress_engine-1.0.1/data/processed/ua_stress.bin.bz2 +0 -0
  30. ua_stress_engine-1.0.1/pyproject.toml +85 -0
@@ -0,0 +1,653 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "ahash"
7
+ version = "0.8.12"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
10
+ dependencies = [
11
+ "cfg-if",
12
+ "once_cell",
13
+ "version_check",
14
+ "zerocopy",
15
+ ]
16
+
17
+ [[package]]
18
+ name = "anyhow"
19
+ version = "1.0.102"
20
+ source = "registry+https://github.com/rust-lang/crates.io-index"
21
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
22
+
23
+ [[package]]
24
+ name = "autocfg"
25
+ version = "1.5.0"
26
+ source = "registry+https://github.com/rust-lang/crates.io-index"
27
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
28
+
29
+ [[package]]
30
+ name = "bincode"
31
+ version = "1.3.3"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
34
+ dependencies = [
35
+ "serde",
36
+ ]
37
+
38
+ [[package]]
39
+ name = "bitflags"
40
+ version = "2.11.1"
41
+ source = "registry+https://github.com/rust-lang/crates.io-index"
42
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
43
+
44
+ [[package]]
45
+ name = "builder"
46
+ version = "0.1.1"
47
+ dependencies = [
48
+ "anyhow",
49
+ "bincode",
50
+ "bzip2",
51
+ "rusqlite",
52
+ "schemars",
53
+ "serde",
54
+ "serde_json",
55
+ "ua-stress-core",
56
+ ]
57
+
58
+ [[package]]
59
+ name = "bumpalo"
60
+ version = "3.20.2"
61
+ source = "registry+https://github.com/rust-lang/crates.io-index"
62
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
63
+
64
+ [[package]]
65
+ name = "bzip2"
66
+ version = "0.4.4"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8"
69
+ dependencies = [
70
+ "bzip2-sys",
71
+ "libc",
72
+ ]
73
+
74
+ [[package]]
75
+ name = "bzip2-rs"
76
+ version = "0.1.2"
77
+ source = "registry+https://github.com/rust-lang/crates.io-index"
78
+ checksum = "beeb59e7e4c811ab37cc73680c798c7a5da77fc9989c62b09138e31ee740f735"
79
+ dependencies = [
80
+ "crc32fast",
81
+ "tinyvec",
82
+ ]
83
+
84
+ [[package]]
85
+ name = "bzip2-sys"
86
+ version = "0.1.13+1.0.8"
87
+ source = "registry+https://github.com/rust-lang/crates.io-index"
88
+ checksum = "225bff33b2141874fe80d71e07d6eec4f85c5c216453dd96388240f96e1acc14"
89
+ dependencies = [
90
+ "cc",
91
+ "pkg-config",
92
+ ]
93
+
94
+ [[package]]
95
+ name = "cc"
96
+ version = "1.2.61"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "d16d90359e986641506914ba71350897565610e87ce0ad9e6f28569db3dd5c6d"
99
+ dependencies = [
100
+ "find-msvc-tools",
101
+ "shlex",
102
+ ]
103
+
104
+ [[package]]
105
+ name = "cfg-if"
106
+ version = "1.0.4"
107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
108
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
109
+
110
+ [[package]]
111
+ name = "crc32fast"
112
+ version = "1.5.0"
113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
114
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
115
+ dependencies = [
116
+ "cfg-if",
117
+ ]
118
+
119
+ [[package]]
120
+ name = "dyn-clone"
121
+ version = "1.0.20"
122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
123
+ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
124
+
125
+ [[package]]
126
+ name = "fallible-iterator"
127
+ version = "0.3.0"
128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
129
+ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
130
+
131
+ [[package]]
132
+ name = "fallible-streaming-iterator"
133
+ version = "0.1.9"
134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
135
+ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
136
+
137
+ [[package]]
138
+ name = "find-msvc-tools"
139
+ version = "0.1.9"
140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
141
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
142
+
143
+ [[package]]
144
+ name = "futures-core"
145
+ version = "0.3.32"
146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
147
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
148
+
149
+ [[package]]
150
+ name = "futures-task"
151
+ version = "0.3.32"
152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
153
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
154
+
155
+ [[package]]
156
+ name = "futures-util"
157
+ version = "0.3.32"
158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
159
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
160
+ dependencies = [
161
+ "futures-core",
162
+ "futures-task",
163
+ "pin-project-lite",
164
+ "slab",
165
+ ]
166
+
167
+ [[package]]
168
+ name = "getrandom"
169
+ version = "0.3.4"
170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
171
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
172
+ dependencies = [
173
+ "cfg-if",
174
+ "js-sys",
175
+ "libc",
176
+ "r-efi",
177
+ "wasip2",
178
+ "wasm-bindgen",
179
+ ]
180
+
181
+ [[package]]
182
+ name = "hashbrown"
183
+ version = "0.14.5"
184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
185
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
186
+ dependencies = [
187
+ "ahash",
188
+ ]
189
+
190
+ [[package]]
191
+ name = "hashlink"
192
+ version = "0.9.1"
193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
194
+ checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af"
195
+ dependencies = [
196
+ "hashbrown",
197
+ ]
198
+
199
+ [[package]]
200
+ name = "heck"
201
+ version = "0.5.0"
202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
203
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
204
+
205
+ [[package]]
206
+ name = "indoc"
207
+ version = "2.0.7"
208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
209
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
210
+ dependencies = [
211
+ "rustversion",
212
+ ]
213
+
214
+ [[package]]
215
+ name = "itoa"
216
+ version = "1.0.18"
217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
218
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
219
+
220
+ [[package]]
221
+ name = "js-sys"
222
+ version = "0.3.97"
223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
224
+ checksum = "a1840c94c045fbcf8ba2812c95db44499f7c64910a912551aaaa541decebcacf"
225
+ dependencies = [
226
+ "cfg-if",
227
+ "futures-util",
228
+ "once_cell",
229
+ "wasm-bindgen",
230
+ ]
231
+
232
+ [[package]]
233
+ name = "libc"
234
+ version = "0.2.186"
235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
236
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
237
+
238
+ [[package]]
239
+ name = "libsqlite3-sys"
240
+ version = "0.30.1"
241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
242
+ checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149"
243
+ dependencies = [
244
+ "cc",
245
+ "pkg-config",
246
+ "vcpkg",
247
+ ]
248
+
249
+ [[package]]
250
+ name = "memchr"
251
+ version = "2.8.0"
252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
253
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
254
+
255
+ [[package]]
256
+ name = "memoffset"
257
+ version = "0.9.1"
258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
259
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
260
+ dependencies = [
261
+ "autocfg",
262
+ ]
263
+
264
+ [[package]]
265
+ name = "once_cell"
266
+ version = "1.21.4"
267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
268
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
269
+
270
+ [[package]]
271
+ name = "pin-project-lite"
272
+ version = "0.2.17"
273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
274
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
275
+
276
+ [[package]]
277
+ name = "pkg-config"
278
+ version = "0.3.33"
279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
280
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
281
+
282
+ [[package]]
283
+ name = "portable-atomic"
284
+ version = "1.13.1"
285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
286
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
287
+
288
+ [[package]]
289
+ name = "proc-macro2"
290
+ version = "1.0.106"
291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
292
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
293
+ dependencies = [
294
+ "unicode-ident",
295
+ ]
296
+
297
+ [[package]]
298
+ name = "pyo3"
299
+ version = "0.22.6"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "f402062616ab18202ae8319da13fa4279883a2b8a9d9f83f20dbade813ce1884"
302
+ dependencies = [
303
+ "cfg-if",
304
+ "indoc",
305
+ "libc",
306
+ "memoffset",
307
+ "once_cell",
308
+ "portable-atomic",
309
+ "pyo3-build-config",
310
+ "pyo3-ffi",
311
+ "pyo3-macros",
312
+ "unindent",
313
+ ]
314
+
315
+ [[package]]
316
+ name = "pyo3-build-config"
317
+ version = "0.22.6"
318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
319
+ checksum = "b14b5775b5ff446dd1056212d778012cbe8a0fbffd368029fd9e25b514479c38"
320
+ dependencies = [
321
+ "once_cell",
322
+ "target-lexicon",
323
+ ]
324
+
325
+ [[package]]
326
+ name = "pyo3-ffi"
327
+ version = "0.22.6"
328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
329
+ checksum = "9ab5bcf04a2cdcbb50c7d6105de943f543f9ed92af55818fd17b660390fc8636"
330
+ dependencies = [
331
+ "libc",
332
+ "pyo3-build-config",
333
+ ]
334
+
335
+ [[package]]
336
+ name = "pyo3-macros"
337
+ version = "0.22.6"
338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
339
+ checksum = "0fd24d897903a9e6d80b968368a34e1525aeb719d568dba8b3d4bfa5dc67d453"
340
+ dependencies = [
341
+ "proc-macro2",
342
+ "pyo3-macros-backend",
343
+ "quote",
344
+ "syn",
345
+ ]
346
+
347
+ [[package]]
348
+ name = "pyo3-macros-backend"
349
+ version = "0.22.6"
350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
351
+ checksum = "36c011a03ba1e50152b4b394b479826cad97e7a21eb52df179cd91ac411cbfbe"
352
+ dependencies = [
353
+ "heck",
354
+ "proc-macro2",
355
+ "pyo3-build-config",
356
+ "quote",
357
+ "syn",
358
+ ]
359
+
360
+ [[package]]
361
+ name = "quote"
362
+ version = "1.0.45"
363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
364
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
365
+ dependencies = [
366
+ "proc-macro2",
367
+ ]
368
+
369
+ [[package]]
370
+ name = "r-efi"
371
+ version = "5.3.0"
372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
373
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
374
+
375
+ [[package]]
376
+ name = "rusqlite"
377
+ version = "0.32.1"
378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
379
+ checksum = "7753b721174eb8ff87a9a0e799e2d7bc3749323e773db92e0984debb00019d6e"
380
+ dependencies = [
381
+ "bitflags",
382
+ "fallible-iterator",
383
+ "fallible-streaming-iterator",
384
+ "hashlink",
385
+ "libsqlite3-sys",
386
+ "smallvec",
387
+ ]
388
+
389
+ [[package]]
390
+ name = "rustversion"
391
+ version = "1.0.22"
392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
393
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
394
+
395
+ [[package]]
396
+ name = "schemars"
397
+ version = "0.8.22"
398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
399
+ checksum = "3fbf2ae1b8bc8e02df939598064d22402220cd5bbcca1c76f7d6a310974d5615"
400
+ dependencies = [
401
+ "dyn-clone",
402
+ "schemars_derive",
403
+ "serde",
404
+ "serde_json",
405
+ ]
406
+
407
+ [[package]]
408
+ name = "schemars_derive"
409
+ version = "0.8.22"
410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
411
+ checksum = "32e265784ad618884abaea0600a9adf15393368d840e0222d101a072f3f7534d"
412
+ dependencies = [
413
+ "proc-macro2",
414
+ "quote",
415
+ "serde_derive_internals",
416
+ "syn",
417
+ ]
418
+
419
+ [[package]]
420
+ name = "serde"
421
+ version = "1.0.228"
422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
423
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
424
+ dependencies = [
425
+ "serde_core",
426
+ "serde_derive",
427
+ ]
428
+
429
+ [[package]]
430
+ name = "serde_core"
431
+ version = "1.0.228"
432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
433
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
434
+ dependencies = [
435
+ "serde_derive",
436
+ ]
437
+
438
+ [[package]]
439
+ name = "serde_derive"
440
+ version = "1.0.228"
441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
442
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
443
+ dependencies = [
444
+ "proc-macro2",
445
+ "quote",
446
+ "syn",
447
+ ]
448
+
449
+ [[package]]
450
+ name = "serde_derive_internals"
451
+ version = "0.29.1"
452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
453
+ checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
454
+ dependencies = [
455
+ "proc-macro2",
456
+ "quote",
457
+ "syn",
458
+ ]
459
+
460
+ [[package]]
461
+ name = "serde_json"
462
+ version = "1.0.149"
463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
464
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
465
+ dependencies = [
466
+ "itoa",
467
+ "memchr",
468
+ "serde",
469
+ "serde_core",
470
+ "zmij",
471
+ ]
472
+
473
+ [[package]]
474
+ name = "shlex"
475
+ version = "1.3.0"
476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
477
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
478
+
479
+ [[package]]
480
+ name = "slab"
481
+ version = "0.4.12"
482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
483
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
484
+
485
+ [[package]]
486
+ name = "smallvec"
487
+ version = "1.15.1"
488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
489
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
490
+
491
+ [[package]]
492
+ name = "syn"
493
+ version = "2.0.117"
494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
495
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
496
+ dependencies = [
497
+ "proc-macro2",
498
+ "quote",
499
+ "unicode-ident",
500
+ ]
501
+
502
+ [[package]]
503
+ name = "target-lexicon"
504
+ version = "0.12.16"
505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
506
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
507
+
508
+ [[package]]
509
+ name = "tinyvec"
510
+ version = "1.11.0"
511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
512
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
513
+
514
+ [[package]]
515
+ name = "ua-stress-core"
516
+ version = "0.1.1"
517
+ dependencies = [
518
+ "bincode",
519
+ "bzip2-rs",
520
+ "getrandom",
521
+ "once_cell",
522
+ "schemars",
523
+ "serde",
524
+ "serde_json",
525
+ ]
526
+
527
+ [[package]]
528
+ name = "ua-stress-python"
529
+ version = "1.0.1"
530
+ dependencies = [
531
+ "once_cell",
532
+ "pyo3",
533
+ "ua-stress-core",
534
+ ]
535
+
536
+ [[package]]
537
+ name = "ua-stress-wasm"
538
+ version = "0.1.1"
539
+ dependencies = [
540
+ "js-sys",
541
+ "ua-stress-core",
542
+ "wasm-bindgen",
543
+ ]
544
+
545
+ [[package]]
546
+ name = "unicode-ident"
547
+ version = "1.0.24"
548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
549
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
550
+
551
+ [[package]]
552
+ name = "unindent"
553
+ version = "0.2.4"
554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
555
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
556
+
557
+ [[package]]
558
+ name = "vcpkg"
559
+ version = "0.2.15"
560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
561
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
562
+
563
+ [[package]]
564
+ name = "version_check"
565
+ version = "0.9.5"
566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
567
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
568
+
569
+ [[package]]
570
+ name = "wasip2"
571
+ version = "1.0.3+wasi-0.2.9"
572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
573
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
574
+ dependencies = [
575
+ "wit-bindgen",
576
+ ]
577
+
578
+ [[package]]
579
+ name = "wasm-bindgen"
580
+ version = "0.2.120"
581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
582
+ checksum = "df52b6d9b87e0c74c9edfa1eb2d9bf85e5d63515474513aa50fa181b3c4f5db1"
583
+ dependencies = [
584
+ "cfg-if",
585
+ "once_cell",
586
+ "rustversion",
587
+ "wasm-bindgen-macro",
588
+ "wasm-bindgen-shared",
589
+ ]
590
+
591
+ [[package]]
592
+ name = "wasm-bindgen-macro"
593
+ version = "0.2.120"
594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
595
+ checksum = "78b1041f495fb322e64aca85f5756b2172e35cd459376e67f2a6c9dffcedb103"
596
+ dependencies = [
597
+ "quote",
598
+ "wasm-bindgen-macro-support",
599
+ ]
600
+
601
+ [[package]]
602
+ name = "wasm-bindgen-macro-support"
603
+ version = "0.2.120"
604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
605
+ checksum = "9dcd0ff20416988a18ac686d4d4d0f6aae9ebf08a389ff5d29012b05af2a1b41"
606
+ dependencies = [
607
+ "bumpalo",
608
+ "proc-macro2",
609
+ "quote",
610
+ "syn",
611
+ "wasm-bindgen-shared",
612
+ ]
613
+
614
+ [[package]]
615
+ name = "wasm-bindgen-shared"
616
+ version = "0.2.120"
617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
618
+ checksum = "49757b3c82ebf16c57d69365a142940b384176c24df52a087fb748e2085359ea"
619
+ dependencies = [
620
+ "unicode-ident",
621
+ ]
622
+
623
+ [[package]]
624
+ name = "wit-bindgen"
625
+ version = "0.57.1"
626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
627
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
628
+
629
+ [[package]]
630
+ name = "zerocopy"
631
+ version = "0.8.48"
632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
633
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
634
+ dependencies = [
635
+ "zerocopy-derive",
636
+ ]
637
+
638
+ [[package]]
639
+ name = "zerocopy-derive"
640
+ version = "0.8.48"
641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
642
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
643
+ dependencies = [
644
+ "proc-macro2",
645
+ "quote",
646
+ "syn",
647
+ ]
648
+
649
+ [[package]]
650
+ name = "zmij"
651
+ version = "1.0.21"
652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
653
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
@@ -0,0 +1,11 @@
1
+ [workspace]
2
+ resolver = "2"
3
+ members = ["crates/core", "crates/python"]
4
+
5
+ [profile.release]
6
+ opt-level = 3
7
+ lto = true
8
+ strip = true
9
+
10
+ # Smaller WASM builds — override per-crate via `cargo build -p ua-stress-wasm`
11
+ # with RUSTFLAGS="-C opt-level=z" if needed.