synthra 0.1.0

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 (302) hide show
  1. checksums.yaml +7 -0
  2. data/.rspec +4 -0
  3. data/.rubocop.yml +40 -0
  4. data/.yardopts +18 -0
  5. data/ACCESS_DOCS.md +116 -0
  6. data/ADVANCED_FEATURES_SUMMARY.md +245 -0
  7. data/CHANGELOG.md +498 -0
  8. data/CODE_OF_CONDUCT.md +122 -0
  9. data/CONTRIBUTING.md +307 -0
  10. data/DOCUMENTATION.md +204 -0
  11. data/DOCUMENTATION_GUIDE.md +194 -0
  12. data/LICENSE +22 -0
  13. data/README.md +1458 -0
  14. data/Rakefile +128 -0
  15. data/benchmark/README.md +591 -0
  16. data/benchmark/batch_generation.rb +63 -0
  17. data/benchmark/engine_comparison.rb +295 -0
  18. data/benchmark/single_record.rb +108 -0
  19. data/benchmark/streaming.rb +74 -0
  20. data/docs/ACTIVERECORD_INFERENCE.md +524 -0
  21. data/docs/API_SERVER.md +278 -0
  22. data/docs/CONFIG_FILE.md +315 -0
  23. data/docs/DATA_CONTRACTS.md +312 -0
  24. data/docs/ENHANCED_REPL.md +304 -0
  25. data/docs/FACTORY_BOT.md +271 -0
  26. data/docs/GITHUB_ACTION.md +420 -0
  27. data/docs/GRAPHQL_EXPORT.md +303 -0
  28. data/docs/GRAPHQL_FEDERATION.md +651 -0
  29. data/docs/HOW_TO_GENERATE_DOCS.md +252 -0
  30. data/docs/LSP.md +189 -0
  31. data/docs/MIGRATION_GENERATOR.md +547 -0
  32. data/docs/MOCK_SERVER.md +280 -0
  33. data/docs/NATIVE_ENGINE.md +298 -0
  34. data/docs/OPENAPI_EXPORT.md +252 -0
  35. data/docs/PERFORMANCE_MODE.md +228 -0
  36. data/docs/PERSONAS.md +547 -0
  37. data/docs/PROPERTY_TESTING.md +284 -0
  38. data/docs/PROTOBUF_EXPORT.md +276 -0
  39. data/docs/QUALITY_METRICS.md +555 -0
  40. data/docs/QUICK_REFERENCE.md +88 -0
  41. data/docs/RAILS_ENGINE.md +404 -0
  42. data/docs/RAILS_INTEGRATION.md +454 -0
  43. data/docs/README.md +175 -0
  44. data/docs/REPL_QUICK_REFERENCE.md +149 -0
  45. data/docs/RUST_INTEGRATION_GUIDE.md +1376 -0
  46. data/docs/SCENARIOS.md +576 -0
  47. data/docs/SECURITY_TESTING.md +318 -0
  48. data/docs/SNAPSHOT_TESTING.md +308 -0
  49. data/docs/STRING_TEXT_TYPES_REFERENCE.md +512 -0
  50. data/docs/TERRAFORM_EXPORT.md +447 -0
  51. data/docs/TIME_TRAVEL.md +507 -0
  52. data/docs/USAGE_GUIDE.md +980 -0
  53. data/docs/WEBHOOK_SIMULATOR.md +579 -0
  54. data/docs/advanced_features.md +183 -0
  55. data/docs/api_reference.md +153 -0
  56. data/docs/behaviors.md +138 -0
  57. data/docs/best_practices.md +191 -0
  58. data/docs/dsl_reference.md +172 -0
  59. data/docs/examples.md +162 -0
  60. data/docs/generation_modes.md +125 -0
  61. data/docs/getting_started.md +92 -0
  62. data/docs/index.html +177 -0
  63. data/docs/strategic/CLOUD_REGISTRY_ARCHITECTURE.md +268 -0
  64. data/docs/strategic/SIMD_OPTIMIZATION_STRATEGY.md +153 -0
  65. data/docs/troubleshooting.md +215 -0
  66. data/docs/type_reference.md +224 -0
  67. data/examples/hostile_mode_demo.rb +64 -0
  68. data/exe/synthra +6 -0
  69. data/ext/synthra_native/Cargo.lock +972 -0
  70. data/ext/synthra_native/Cargo.toml +46 -0
  71. data/ext/synthra_native/extconf.rb +41 -0
  72. data/ext/synthra_native/src/generator.rs +397 -0
  73. data/ext/synthra_native/src/lib.rs +229 -0
  74. data/ext/synthra_native/src/types.rs +1485 -0
  75. data/lib/generators/synthra/install_generator.rb +86 -0
  76. data/lib/generators/synthra/templates/api_response.dsl +15 -0
  77. data/lib/generators/synthra/templates/fake_data.rake +116 -0
  78. data/lib/generators/synthra/templates/synthra.yml +31 -0
  79. data/lib/generators/synthra/templates/synthra_support.rb +19 -0
  80. data/lib/generators/synthra/templates/user.dsl +11 -0
  81. data/lib/synthra/activerecord_inference.rb +394 -0
  82. data/lib/synthra/api.rb +381 -0
  83. data/lib/synthra/api_server.rb +718 -0
  84. data/lib/synthra/behaviors/applicator.rb +165 -0
  85. data/lib/synthra/behaviors/base.rb +155 -0
  86. data/lib/synthra/behaviors/close_connection.rb +60 -0
  87. data/lib/synthra/behaviors/deprecated.rb +100 -0
  88. data/lib/synthra/behaviors/failure.rb +69 -0
  89. data/lib/synthra/behaviors/latency.rb +103 -0
  90. data/lib/synthra/behaviors/partial_data.rb +83 -0
  91. data/lib/synthra/behaviors/randomize_order.rb +74 -0
  92. data/lib/synthra/behaviors/registry.rb +238 -0
  93. data/lib/synthra/behaviors/simulate_error.rb +79 -0
  94. data/lib/synthra/cli/commands/base.rb +105 -0
  95. data/lib/synthra/cli/commands/diff.rb +227 -0
  96. data/lib/synthra/cli/commands/docs.rb +67 -0
  97. data/lib/synthra/cli/commands/export.rb +150 -0
  98. data/lib/synthra/cli/commands/generate.rb +72 -0
  99. data/lib/synthra/cli/commands/import.rb +80 -0
  100. data/lib/synthra/cli/commands/lint.rb +53 -0
  101. data/lib/synthra/cli/commands/live.rb +57 -0
  102. data/lib/synthra/cli/commands/seed.rb +99 -0
  103. data/lib/synthra/cli/commands/validate.rb +28 -0
  104. data/lib/synthra/cli.rb +2471 -0
  105. data/lib/synthra/config_file.rb +129 -0
  106. data/lib/synthra/configuration.rb +281 -0
  107. data/lib/synthra/contracts_registry.rb +408 -0
  108. data/lib/synthra/database_seeder.rb +268 -0
  109. data/lib/synthra/deterministic_ids.rb +218 -0
  110. data/lib/synthra/documentation_generator.rb +414 -0
  111. data/lib/synthra/engine.rb +251 -0
  112. data/lib/synthra/errors.rb +1169 -0
  113. data/lib/synthra/export/base.rb +85 -0
  114. data/lib/synthra/export/csv.rb +101 -0
  115. data/lib/synthra/export/graphql.rb +266 -0
  116. data/lib/synthra/export/graphql_federation.rb +377 -0
  117. data/lib/synthra/export/graphviz.rb +258 -0
  118. data/lib/synthra/export/javascript.rb +327 -0
  119. data/lib/synthra/export/json_data.rb +61 -0
  120. data/lib/synthra/export/json_schema.rb +290 -0
  121. data/lib/synthra/export/openapi.rb +514 -0
  122. data/lib/synthra/export/protobuf.rb +483 -0
  123. data/lib/synthra/export/python.rb +560 -0
  124. data/lib/synthra/export/sql.rb +381 -0
  125. data/lib/synthra/export/sql_insert.rb +152 -0
  126. data/lib/synthra/export/terraform.rb +501 -0
  127. data/lib/synthra/export/type_mapping.rb +389 -0
  128. data/lib/synthra/export/typescript.rb +300 -0
  129. data/lib/synthra/export/xml_data.rb +104 -0
  130. data/lib/synthra/export/yaml_data.rb +56 -0
  131. data/lib/synthra/export.rb +404 -0
  132. data/lib/synthra/factory_bot_integration.rb +157 -0
  133. data/lib/synthra/field.rb +440 -0
  134. data/lib/synthra/functions/registry.rb +104 -0
  135. data/lib/synthra/generator/context.rb +372 -0
  136. data/lib/synthra/generator/engine.rb +336 -0
  137. data/lib/synthra/generator/faker_adapter.rb +425 -0
  138. data/lib/synthra/generator/modes.rb +444 -0
  139. data/lib/synthra/generator/resolver.rb +256 -0
  140. data/lib/synthra/generator/rng.rb +273 -0
  141. data/lib/synthra/generator/streamer.rb +63 -0
  142. data/lib/synthra/generator/uniqueness.rb +118 -0
  143. data/lib/synthra/initializer.rb +97 -0
  144. data/lib/synthra/limits.rb +279 -0
  145. data/lib/synthra/live_preview.rb +518 -0
  146. data/lib/synthra/loader_config.rb +78 -0
  147. data/lib/synthra/lsp/server.rb +689 -0
  148. data/lib/synthra/migration_generator.rb +301 -0
  149. data/lib/synthra/mixin.rb +174 -0
  150. data/lib/synthra/mock_server.rb +458 -0
  151. data/lib/synthra/native_engine.rb +304 -0
  152. data/lib/synthra/openapi_importer.rb +228 -0
  153. data/lib/synthra/output/json_formatter.rb +40 -0
  154. data/lib/synthra/output/ndjson_formatter.rb +55 -0
  155. data/lib/synthra/parser/ast.rb +1287 -0
  156. data/lib/synthra/parser/lexer.rb +1152 -0
  157. data/lib/synthra/parser/parser.rb +1664 -0
  158. data/lib/synthra/parser/tokens.rb +461 -0
  159. data/lib/synthra/performance_mode.rb +364 -0
  160. data/lib/synthra/personas.rb +397 -0
  161. data/lib/synthra/property_testing.rb +172 -0
  162. data/lib/synthra/quality_metrics.rb +405 -0
  163. data/lib/synthra/rails_test_helper.rb +248 -0
  164. data/lib/synthra/registry.rb +533 -0
  165. data/lib/synthra/relationships.rb +193 -0
  166. data/lib/synthra/repl/enhanced_repl.rb +607 -0
  167. data/lib/synthra/repl/formatter.rb +191 -0
  168. data/lib/synthra/scenarios.rb +423 -0
  169. data/lib/synthra/schema.rb +605 -0
  170. data/lib/synthra/schema_inheritance.rb +104 -0
  171. data/lib/synthra/schema_versioning.rb +212 -0
  172. data/lib/synthra/snapshot_testing.rb +199 -0
  173. data/lib/synthra/time_travel.rb +338 -0
  174. data/lib/synthra/type_definitions.rb +274 -0
  175. data/lib/synthra/types/address_location/addresses.rb +125 -0
  176. data/lib/synthra/types/address_location/airports.rb +200 -0
  177. data/lib/synthra/types/address_location/banks_hospitals.rb +207 -0
  178. data/lib/synthra/types/address_location/locations.rb +406 -0
  179. data/lib/synthra/types/base.rb +48 -0
  180. data/lib/synthra/types/commerce_products/commerce.rb +119 -0
  181. data/lib/synthra/types/commerce_products/companies.rb +71 -0
  182. data/lib/synthra/types/commerce_products/construction.rb +126 -0
  183. data/lib/synthra/types/commerce_products/products.rb +205 -0
  184. data/lib/synthra/types/core/collections.rb +513 -0
  185. data/lib/synthra/types/core/defaults.rb +76 -0
  186. data/lib/synthra/types/core/enums.rb +102 -0
  187. data/lib/synthra/types/core/identifiers.rb +445 -0
  188. data/lib/synthra/types/core/primitives.rb +586 -0
  189. data/lib/synthra/types/core/references.rb +466 -0
  190. data/lib/synthra/types/core/sequences.rb +304 -0
  191. data/lib/synthra/types/crypto/crypto.rb +162 -0
  192. data/lib/synthra/types/date_time/dates.rb +387 -0
  193. data/lib/synthra/types/finance_banking/banking.rb +424 -0
  194. data/lib/synthra/types/finance_banking/credit_cards.rb +24 -0
  195. data/lib/synthra/types/finance_banking/identifiers.rb +93 -0
  196. data/lib/synthra/types/formula.rb +184 -0
  197. data/lib/synthra/types/health_medical/medical.rb +150 -0
  198. data/lib/synthra/types/hostile_payloads.rb +122 -0
  199. data/lib/synthra/types/json_array.rb +51 -0
  200. data/lib/synthra/types/media_entertainment/media.rb +62 -0
  201. data/lib/synthra/types/naughty_string.rb +30 -0
  202. data/lib/synthra/types/personal_names/chinese.rb +41 -0
  203. data/lib/synthra/types/personal_names/identifiers.rb +187 -0
  204. data/lib/synthra/types/personal_names/names.rb +246 -0
  205. data/lib/synthra/types/personal_names/national_id.rb +89 -0
  206. data/lib/synthra/types/personal_names/titles_suffixes.rb +41 -0
  207. data/lib/synthra/types/regex.rb +248 -0
  208. data/lib/synthra/types/registry.rb +182 -0
  209. data/lib/synthra/types/repeating_element.rb +50 -0
  210. data/lib/synthra/types/scenario.rb +29 -0
  211. data/lib/synthra/types/technology_internet/apps.rb +67 -0
  212. data/lib/synthra/types/technology_internet/communication.rb +162 -0
  213. data/lib/synthra/types/technology_internet/devices.rb +80 -0
  214. data/lib/synthra/types/technology_internet/formats.rb +139 -0
  215. data/lib/synthra/types/technology_internet/networking.rb +143 -0
  216. data/lib/synthra/types/template.rb +92 -0
  217. data/lib/synthra/types/text_content/business.rb +128 -0
  218. data/lib/synthra/types/text_content/colors.rb +70 -0
  219. data/lib/synthra/types/text_content/misc.rb +237 -0
  220. data/lib/synthra/types/text_content/security.rb +130 -0
  221. data/lib/synthra/types/text_content/text_generation.rb +532 -0
  222. data/lib/synthra/types/travel/travel.rb +150 -0
  223. data/lib/synthra/utils/string_distance.rb +133 -0
  224. data/lib/synthra/validator/dsl_validator.rb +339 -0
  225. data/lib/synthra/validator/path_validator.rb +615 -0
  226. data/lib/synthra/version.rb +35 -0
  227. data/lib/synthra/webhook_simulator.rb +341 -0
  228. data/lib/synthra.rb +259 -0
  229. data/schemas/address.dsl +16 -0
  230. data/schemas/api_response.dsl +8 -0
  231. data/schemas/error_payload.dsl +9 -0
  232. data/schemas/order.dsl +10 -0
  233. data/schemas/order_item.dsl +8 -0
  234. data/schemas/payment.dsl +11 -0
  235. data/schemas/social_post.dsl +13 -0
  236. data/schemas/user.dsl +10 -0
  237. data/scripts/batch_fix_all.rb +96 -0
  238. data/scripts/delete_old_files.rb +32 -0
  239. data/scripts/fix_all_grouped_files.rb +137 -0
  240. data/scripts/fix_all_indentation.rb +48 -0
  241. data/scripts/fix_all_syntax.rb +124 -0
  242. data/scripts/fix_grouped_files.rb +184 -0
  243. data/scripts/fix_syntax_errors.rb +108 -0
  244. data/scripts/group_domain_types.rb +112 -0
  245. data/scripts/group_domain_types_fixed.rb +150 -0
  246. data/scripts/merge_domains_to_one_file.rb +68 -0
  247. data/scripts/move_existing_types.rb +130 -0
  248. data/scripts/split_grouped_types.rb +142 -0
  249. data/tech_docs/README.md +134 -0
  250. data/tech_docs/advanced/streaming.md +405 -0
  251. data/tech_docs/advanced/thread_safety.md +253 -0
  252. data/tech_docs/api/overview.md +485 -0
  253. data/tech_docs/appendices/type_chart.md +193 -0
  254. data/tech_docs/basic_concepts.md +383 -0
  255. data/tech_docs/behaviors/overview.md +346 -0
  256. data/tech_docs/dsl/complex_types.md +790 -0
  257. data/tech_docs/dsl/core_types.md +464 -0
  258. data/tech_docs/dsl/datetime_types.md +325 -0
  259. data/tech_docs/dsl/field_modifiers.md +414 -0
  260. data/tech_docs/dsl/grammar.md +431 -0
  261. data/tech_docs/dsl/schema_definition.md +399 -0
  262. data/tech_docs/export/README.md +276 -0
  263. data/tech_docs/installation.md +273 -0
  264. data/tech_docs/integration/ci_cd.md +707 -0
  265. data/tech_docs/integration/ci_cd_guide.md +579 -0
  266. data/tech_docs/integration/factory_bot.md +485 -0
  267. data/tech_docs/integration/rails.md +630 -0
  268. data/tech_docs/integration/rspec.md +449 -0
  269. data/tech_docs/modes/overview.md +350 -0
  270. data/tech_docs/performance/NATIVE_RUST_EXTENSION.md +1270 -0
  271. data/tech_docs/performance/OPTIMIZATION_GUIDE.md +901 -0
  272. data/tech_docs/quick_start.md +256 -0
  273. data/tech_docs/templates/README.md +805 -0
  274. data/tech_docs/tutorials/advanced.md +371 -0
  275. data/tech_docs/tutorials/getting_started.md +189 -0
  276. data/tech_docs/tutorials/intermediate.md +231 -0
  277. data/tech_docs/tutorials/template_gallery.md +569 -0
  278. data/tech_example/01_basic_usage.rb +238 -0
  279. data/tech_example/02_types_demo.rb +336 -0
  280. data/tech_example/04_cli_usage.md +429 -0
  281. data/tech_example/05_database_seeding.rb +283 -0
  282. data/tech_example/07_rspec_integration.rb +359 -0
  283. data/tech_example/10_custom_types.rb +387 -0
  284. data/tech_example/12_behaviors.rb +372 -0
  285. data/tech_example/13_twitter_dm_example.rb +120 -0
  286. data/tech_example/14_exact_json_structure.rb +253 -0
  287. data/tech_example/16_lsp_server.rb +56 -0
  288. data/tech_example/17_property_testing.rb +92 -0
  289. data/tech_example/18_enhanced_repl.rb +120 -0
  290. data/tech_example/19_security_fuzzing.rb +145 -0
  291. data/tech_example/NEW_FEATURES.md +169 -0
  292. data/tech_example/README.md +118 -0
  293. data/tech_example/schemas/api_response.dsl +123 -0
  294. data/tech_example/schemas/ecommerce.dsl +121 -0
  295. data/tech_example/schemas/twitter_dm.dsl +109 -0
  296. data/tech_example/schemas/user.dsl +36 -0
  297. data/vscode-extension/README.md +246 -0
  298. data/vscode-extension/language-configuration.json +31 -0
  299. data/vscode-extension/package.json +55 -0
  300. data/vscode-extension/snippets/fakedatadsl.json +198 -0
  301. data/vscode-extension/syntaxes/fakedatadsl.tmLanguage.json +128 -0
  302. metadata +478 -0
@@ -0,0 +1,972 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.4"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "android_system_properties"
16
+ version = "0.1.5"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
19
+ dependencies = [
20
+ "libc",
21
+ ]
22
+
23
+ [[package]]
24
+ name = "atomic"
25
+ version = "0.6.1"
26
+ source = "registry+https://github.com/rust-lang/crates.io-index"
27
+ checksum = "a89cbf775b137e9b968e67227ef7f775587cde3fd31b0d8599dbd0f598a48340"
28
+ dependencies = [
29
+ "bytemuck",
30
+ ]
31
+
32
+ [[package]]
33
+ name = "autocfg"
34
+ version = "1.5.1"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
37
+
38
+ [[package]]
39
+ name = "bindgen"
40
+ version = "0.72.1"
41
+ source = "registry+https://github.com/rust-lang/crates.io-index"
42
+ checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
43
+ dependencies = [
44
+ "bitflags",
45
+ "cexpr",
46
+ "clang-sys",
47
+ "itertools",
48
+ "proc-macro2",
49
+ "quote",
50
+ "regex",
51
+ "rustc-hash",
52
+ "shlex 1.3.0",
53
+ "syn",
54
+ ]
55
+
56
+ [[package]]
57
+ name = "bitflags"
58
+ version = "2.13.0"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
61
+
62
+ [[package]]
63
+ name = "block-buffer"
64
+ version = "0.10.4"
65
+ source = "registry+https://github.com/rust-lang/crates.io-index"
66
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
67
+ dependencies = [
68
+ "generic-array",
69
+ ]
70
+
71
+ [[package]]
72
+ name = "bumpalo"
73
+ version = "3.20.3"
74
+ source = "registry+https://github.com/rust-lang/crates.io-index"
75
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
76
+
77
+ [[package]]
78
+ name = "bytemuck"
79
+ version = "1.25.0"
80
+ source = "registry+https://github.com/rust-lang/crates.io-index"
81
+ checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
82
+
83
+ [[package]]
84
+ name = "bytes"
85
+ version = "1.12.0"
86
+ source = "registry+https://github.com/rust-lang/crates.io-index"
87
+ checksum = "8ae3f5d315924270530207e2a68396c3cc547f6dca3fbdca317cfb1a51edb593"
88
+
89
+ [[package]]
90
+ name = "cc"
91
+ version = "1.2.65"
92
+ source = "registry+https://github.com/rust-lang/crates.io-index"
93
+ checksum = "e228eec9be7c17ccb640b59b36a5cd805ea2a564a4c5e162c2f659fea30d3b96"
94
+ dependencies = [
95
+ "find-msvc-tools",
96
+ "shlex 2.0.1",
97
+ ]
98
+
99
+ [[package]]
100
+ name = "cexpr"
101
+ version = "0.6.0"
102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
103
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
104
+ dependencies = [
105
+ "nom",
106
+ ]
107
+
108
+ [[package]]
109
+ name = "cfg-if"
110
+ version = "1.0.4"
111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
112
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
113
+
114
+ [[package]]
115
+ name = "chrono"
116
+ version = "0.4.45"
117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
118
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
119
+ dependencies = [
120
+ "iana-time-zone",
121
+ "js-sys",
122
+ "num-traits",
123
+ "wasm-bindgen",
124
+ "windows-link",
125
+ ]
126
+
127
+ [[package]]
128
+ name = "clang-sys"
129
+ version = "1.8.1"
130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
131
+ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
132
+ dependencies = [
133
+ "glob",
134
+ "libc",
135
+ "libloading",
136
+ ]
137
+
138
+ [[package]]
139
+ name = "core-foundation-sys"
140
+ version = "0.8.7"
141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
142
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
143
+
144
+ [[package]]
145
+ name = "crossbeam-deque"
146
+ version = "0.8.6"
147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
148
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
149
+ dependencies = [
150
+ "crossbeam-epoch",
151
+ "crossbeam-utils",
152
+ ]
153
+
154
+ [[package]]
155
+ name = "crossbeam-epoch"
156
+ version = "0.9.18"
157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
158
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
159
+ dependencies = [
160
+ "crossbeam-utils",
161
+ ]
162
+
163
+ [[package]]
164
+ name = "crossbeam-utils"
165
+ version = "0.8.21"
166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
167
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
168
+
169
+ [[package]]
170
+ name = "crypto-common"
171
+ version = "0.1.7"
172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
173
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
174
+ dependencies = [
175
+ "generic-array",
176
+ "typenum",
177
+ ]
178
+
179
+ [[package]]
180
+ name = "darling"
181
+ version = "0.20.11"
182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
183
+ checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
184
+ dependencies = [
185
+ "darling_core",
186
+ "darling_macro",
187
+ ]
188
+
189
+ [[package]]
190
+ name = "darling_core"
191
+ version = "0.20.11"
192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
193
+ checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
194
+ dependencies = [
195
+ "fnv",
196
+ "ident_case",
197
+ "proc-macro2",
198
+ "quote",
199
+ "syn",
200
+ ]
201
+
202
+ [[package]]
203
+ name = "darling_macro"
204
+ version = "0.20.11"
205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
206
+ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
207
+ dependencies = [
208
+ "darling_core",
209
+ "quote",
210
+ "syn",
211
+ ]
212
+
213
+ [[package]]
214
+ name = "deunicode"
215
+ version = "1.6.2"
216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
217
+ checksum = "abd57806937c9cc163efc8ea3910e00a62e2aeb0b8119f1793a978088f8f6b04"
218
+
219
+ [[package]]
220
+ name = "digest"
221
+ version = "0.10.7"
222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
223
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
224
+ dependencies = [
225
+ "block-buffer",
226
+ "crypto-common",
227
+ ]
228
+
229
+ [[package]]
230
+ name = "dummy"
231
+ version = "0.11.0"
232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
233
+ checksum = "3bbcf21279103a67372982cb1156a2154a452451dff2b884cf897ccecce389e0"
234
+ dependencies = [
235
+ "darling",
236
+ "proc-macro2",
237
+ "quote",
238
+ "syn",
239
+ ]
240
+
241
+ [[package]]
242
+ name = "either"
243
+ version = "1.16.0"
244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
245
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
246
+
247
+ [[package]]
248
+ name = "fake"
249
+ version = "4.4.0"
250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
251
+ checksum = "f2b0902eb36fbab51c14eda1c186bda119fcff91e5e4e7fc2dd2077298197ce8"
252
+ dependencies = [
253
+ "chrono",
254
+ "deunicode",
255
+ "dummy",
256
+ "either",
257
+ "http",
258
+ "rand",
259
+ "random_color",
260
+ "url-escape",
261
+ "uuid",
262
+ ]
263
+
264
+ [[package]]
265
+ name = "find-msvc-tools"
266
+ version = "0.1.9"
267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
268
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
269
+
270
+ [[package]]
271
+ name = "fnv"
272
+ version = "1.0.7"
273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
274
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
275
+
276
+ [[package]]
277
+ name = "futures-core"
278
+ version = "0.3.32"
279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
280
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
281
+
282
+ [[package]]
283
+ name = "futures-task"
284
+ version = "0.3.32"
285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
286
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
287
+
288
+ [[package]]
289
+ name = "futures-util"
290
+ version = "0.3.32"
291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
292
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
293
+ dependencies = [
294
+ "futures-core",
295
+ "futures-task",
296
+ "pin-project-lite",
297
+ "slab",
298
+ ]
299
+
300
+ [[package]]
301
+ name = "generic-array"
302
+ version = "0.14.7"
303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
304
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
305
+ dependencies = [
306
+ "typenum",
307
+ "version_check",
308
+ ]
309
+
310
+ [[package]]
311
+ name = "getrandom"
312
+ version = "0.3.4"
313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
314
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
315
+ dependencies = [
316
+ "cfg-if",
317
+ "libc",
318
+ "r-efi 5.3.0",
319
+ "wasip2",
320
+ ]
321
+
322
+ [[package]]
323
+ name = "getrandom"
324
+ version = "0.4.3"
325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
326
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
327
+ dependencies = [
328
+ "cfg-if",
329
+ "libc",
330
+ "r-efi 6.0.0",
331
+ ]
332
+
333
+ [[package]]
334
+ name = "glob"
335
+ version = "0.3.3"
336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
337
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
338
+
339
+ [[package]]
340
+ name = "http"
341
+ version = "1.4.2"
342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
343
+ checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
344
+ dependencies = [
345
+ "bytes",
346
+ "itoa",
347
+ ]
348
+
349
+ [[package]]
350
+ name = "iana-time-zone"
351
+ version = "0.1.65"
352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
353
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
354
+ dependencies = [
355
+ "android_system_properties",
356
+ "core-foundation-sys",
357
+ "iana-time-zone-haiku",
358
+ "js-sys",
359
+ "log",
360
+ "wasm-bindgen",
361
+ "windows-core",
362
+ ]
363
+
364
+ [[package]]
365
+ name = "iana-time-zone-haiku"
366
+ version = "0.1.2"
367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
368
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
369
+ dependencies = [
370
+ "cc",
371
+ ]
372
+
373
+ [[package]]
374
+ name = "ident_case"
375
+ version = "1.0.1"
376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
377
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
378
+
379
+ [[package]]
380
+ name = "itertools"
381
+ version = "0.13.0"
382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
383
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
384
+ dependencies = [
385
+ "either",
386
+ ]
387
+
388
+ [[package]]
389
+ name = "itoa"
390
+ version = "1.0.18"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
393
+
394
+ [[package]]
395
+ name = "js-sys"
396
+ version = "0.3.103"
397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
398
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
399
+ dependencies = [
400
+ "cfg-if",
401
+ "futures-util",
402
+ "wasm-bindgen",
403
+ ]
404
+
405
+ [[package]]
406
+ name = "lazy_static"
407
+ version = "1.5.0"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
410
+
411
+ [[package]]
412
+ name = "libc"
413
+ version = "0.2.186"
414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
415
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
416
+
417
+ [[package]]
418
+ name = "libloading"
419
+ version = "0.8.9"
420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
421
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
422
+ dependencies = [
423
+ "cfg-if",
424
+ "windows-link",
425
+ ]
426
+
427
+ [[package]]
428
+ name = "log"
429
+ version = "0.4.33"
430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
431
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
432
+
433
+ [[package]]
434
+ name = "magnus"
435
+ version = "0.8.2"
436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
437
+ checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
438
+ dependencies = [
439
+ "magnus-macros",
440
+ "rb-sys",
441
+ "rb-sys-env",
442
+ "seq-macro",
443
+ ]
444
+
445
+ [[package]]
446
+ name = "magnus-macros"
447
+ version = "0.8.0"
448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
449
+ checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
450
+ dependencies = [
451
+ "proc-macro2",
452
+ "quote",
453
+ "syn",
454
+ ]
455
+
456
+ [[package]]
457
+ name = "md-5"
458
+ version = "0.10.6"
459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
460
+ checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
461
+ dependencies = [
462
+ "cfg-if",
463
+ "digest",
464
+ ]
465
+
466
+ [[package]]
467
+ name = "memchr"
468
+ version = "2.8.2"
469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
470
+ checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
471
+
472
+ [[package]]
473
+ name = "minimal-lexical"
474
+ version = "0.2.1"
475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
476
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
477
+
478
+ [[package]]
479
+ name = "nom"
480
+ version = "7.1.3"
481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
482
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
483
+ dependencies = [
484
+ "memchr",
485
+ "minimal-lexical",
486
+ ]
487
+
488
+ [[package]]
489
+ name = "num-traits"
490
+ version = "0.2.19"
491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
492
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
493
+ dependencies = [
494
+ "autocfg",
495
+ ]
496
+
497
+ [[package]]
498
+ name = "once_cell"
499
+ version = "1.21.4"
500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
501
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
502
+
503
+ [[package]]
504
+ name = "percent-encoding"
505
+ version = "2.3.2"
506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
507
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
508
+
509
+ [[package]]
510
+ name = "pin-project-lite"
511
+ version = "0.2.17"
512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
513
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
514
+
515
+ [[package]]
516
+ name = "ppv-lite86"
517
+ version = "0.2.21"
518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
519
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
520
+ dependencies = [
521
+ "zerocopy",
522
+ ]
523
+
524
+ [[package]]
525
+ name = "proc-macro2"
526
+ version = "1.0.106"
527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
528
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
529
+ dependencies = [
530
+ "unicode-ident",
531
+ ]
532
+
533
+ [[package]]
534
+ name = "quote"
535
+ version = "1.0.46"
536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
537
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
538
+ dependencies = [
539
+ "proc-macro2",
540
+ ]
541
+
542
+ [[package]]
543
+ name = "r-efi"
544
+ version = "5.3.0"
545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
546
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
547
+
548
+ [[package]]
549
+ name = "r-efi"
550
+ version = "6.0.0"
551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
552
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
553
+
554
+ [[package]]
555
+ name = "rand"
556
+ version = "0.9.4"
557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
558
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
559
+ dependencies = [
560
+ "rand_chacha",
561
+ "rand_core",
562
+ ]
563
+
564
+ [[package]]
565
+ name = "rand_chacha"
566
+ version = "0.9.0"
567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
568
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
569
+ dependencies = [
570
+ "ppv-lite86",
571
+ "rand_core",
572
+ ]
573
+
574
+ [[package]]
575
+ name = "rand_core"
576
+ version = "0.9.5"
577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
578
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
579
+ dependencies = [
580
+ "getrandom 0.3.4",
581
+ ]
582
+
583
+ [[package]]
584
+ name = "random_color"
585
+ version = "1.1.0"
586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
587
+ checksum = "d635c5e80ae160390ac62ca027d2d06c94c1dc69e5c0a12f1e3a53664dc84966"
588
+ dependencies = [
589
+ "rand",
590
+ ]
591
+
592
+ [[package]]
593
+ name = "rayon"
594
+ version = "1.12.0"
595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
596
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
597
+ dependencies = [
598
+ "either",
599
+ "rayon-core",
600
+ ]
601
+
602
+ [[package]]
603
+ name = "rayon-core"
604
+ version = "1.13.0"
605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
606
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
607
+ dependencies = [
608
+ "crossbeam-deque",
609
+ "crossbeam-utils",
610
+ ]
611
+
612
+ [[package]]
613
+ name = "rb-sys"
614
+ version = "0.9.128"
615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
616
+ checksum = "45ca28513560e56cfb79a62b1fce363c73af170a182024ce880c77ee9429920a"
617
+ dependencies = [
618
+ "rb-sys-build",
619
+ ]
620
+
621
+ [[package]]
622
+ name = "rb-sys-build"
623
+ version = "0.9.128"
624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
625
+ checksum = "ce04b2c55eff3a21aaa623fcc655d94373238e72cac6b3e1a3641ff31649f99a"
626
+ dependencies = [
627
+ "bindgen",
628
+ "lazy_static",
629
+ "proc-macro2",
630
+ "quote",
631
+ "regex",
632
+ "shell-words",
633
+ "syn",
634
+ ]
635
+
636
+ [[package]]
637
+ name = "rb-sys-env"
638
+ version = "0.2.3"
639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
640
+ checksum = "cca7ad6a7e21e72151d56fe2495a259b5670e204c3adac41ee7ef676ea08117a"
641
+
642
+ [[package]]
643
+ name = "regex"
644
+ version = "1.12.4"
645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
646
+ checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
647
+ dependencies = [
648
+ "aho-corasick",
649
+ "memchr",
650
+ "regex-automata",
651
+ "regex-syntax",
652
+ ]
653
+
654
+ [[package]]
655
+ name = "regex-automata"
656
+ version = "0.4.14"
657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
658
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
659
+ dependencies = [
660
+ "aho-corasick",
661
+ "memchr",
662
+ "regex-syntax",
663
+ ]
664
+
665
+ [[package]]
666
+ name = "regex-syntax"
667
+ version = "0.8.11"
668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
669
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
670
+
671
+ [[package]]
672
+ name = "rustc-hash"
673
+ version = "2.1.2"
674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
675
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
676
+
677
+ [[package]]
678
+ name = "rustversion"
679
+ version = "1.0.22"
680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
681
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
682
+
683
+ [[package]]
684
+ name = "seq-macro"
685
+ version = "0.3.6"
686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
687
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
688
+
689
+ [[package]]
690
+ name = "serde"
691
+ version = "1.0.228"
692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
693
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
694
+ dependencies = [
695
+ "serde_core",
696
+ "serde_derive",
697
+ ]
698
+
699
+ [[package]]
700
+ name = "serde_core"
701
+ version = "1.0.228"
702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
703
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
704
+ dependencies = [
705
+ "serde_derive",
706
+ ]
707
+
708
+ [[package]]
709
+ name = "serde_derive"
710
+ version = "1.0.228"
711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
712
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
713
+ dependencies = [
714
+ "proc-macro2",
715
+ "quote",
716
+ "syn",
717
+ ]
718
+
719
+ [[package]]
720
+ name = "serde_json"
721
+ version = "1.0.150"
722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
723
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
724
+ dependencies = [
725
+ "itoa",
726
+ "memchr",
727
+ "serde",
728
+ "serde_core",
729
+ "zmij",
730
+ ]
731
+
732
+ [[package]]
733
+ name = "sha1_smol"
734
+ version = "1.0.1"
735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
736
+ checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d"
737
+
738
+ [[package]]
739
+ name = "shell-words"
740
+ version = "1.1.1"
741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
742
+ checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
743
+
744
+ [[package]]
745
+ name = "shlex"
746
+ version = "1.3.0"
747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
748
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
749
+
750
+ [[package]]
751
+ name = "shlex"
752
+ version = "2.0.1"
753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
754
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
755
+
756
+ [[package]]
757
+ name = "slab"
758
+ version = "0.4.12"
759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
760
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
761
+
762
+ [[package]]
763
+ name = "syn"
764
+ version = "2.0.118"
765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
766
+ checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
767
+ dependencies = [
768
+ "proc-macro2",
769
+ "quote",
770
+ "unicode-ident",
771
+ ]
772
+
773
+ [[package]]
774
+ name = "synthra_native"
775
+ version = "0.1.0"
776
+ dependencies = [
777
+ "chrono",
778
+ "fake",
779
+ "magnus",
780
+ "rayon",
781
+ "rb-sys",
782
+ "serde",
783
+ "serde_json",
784
+ "uuid",
785
+ ]
786
+
787
+ [[package]]
788
+ name = "typenum"
789
+ version = "1.20.1"
790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
791
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
792
+
793
+ [[package]]
794
+ name = "unicode-ident"
795
+ version = "1.0.24"
796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
797
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
798
+
799
+ [[package]]
800
+ name = "url-escape"
801
+ version = "0.1.1"
802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
803
+ checksum = "44e0ce4d1246d075ca5abec4b41d33e87a6054d08e2366b63205665e950db218"
804
+ dependencies = [
805
+ "percent-encoding",
806
+ ]
807
+
808
+ [[package]]
809
+ name = "uuid"
810
+ version = "1.23.4"
811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
812
+ checksum = "bf80a72845275afea99e7f2b434723d3bc7e38470fcd1c7ed39a599c73319a53"
813
+ dependencies = [
814
+ "atomic",
815
+ "getrandom 0.4.3",
816
+ "js-sys",
817
+ "md-5",
818
+ "serde_core",
819
+ "sha1_smol",
820
+ "wasm-bindgen",
821
+ ]
822
+
823
+ [[package]]
824
+ name = "version_check"
825
+ version = "0.9.5"
826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
827
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
828
+
829
+ [[package]]
830
+ name = "wasip2"
831
+ version = "1.0.4+wasi-0.2.12"
832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
833
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
834
+ dependencies = [
835
+ "wit-bindgen",
836
+ ]
837
+
838
+ [[package]]
839
+ name = "wasm-bindgen"
840
+ version = "0.2.126"
841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
842
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
843
+ dependencies = [
844
+ "cfg-if",
845
+ "once_cell",
846
+ "rustversion",
847
+ "wasm-bindgen-macro",
848
+ "wasm-bindgen-shared",
849
+ ]
850
+
851
+ [[package]]
852
+ name = "wasm-bindgen-macro"
853
+ version = "0.2.126"
854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
855
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
856
+ dependencies = [
857
+ "quote",
858
+ "wasm-bindgen-macro-support",
859
+ ]
860
+
861
+ [[package]]
862
+ name = "wasm-bindgen-macro-support"
863
+ version = "0.2.126"
864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
865
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
866
+ dependencies = [
867
+ "bumpalo",
868
+ "proc-macro2",
869
+ "quote",
870
+ "syn",
871
+ "wasm-bindgen-shared",
872
+ ]
873
+
874
+ [[package]]
875
+ name = "wasm-bindgen-shared"
876
+ version = "0.2.126"
877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
878
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
879
+ dependencies = [
880
+ "unicode-ident",
881
+ ]
882
+
883
+ [[package]]
884
+ name = "windows-core"
885
+ version = "0.62.2"
886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
887
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
888
+ dependencies = [
889
+ "windows-implement",
890
+ "windows-interface",
891
+ "windows-link",
892
+ "windows-result",
893
+ "windows-strings",
894
+ ]
895
+
896
+ [[package]]
897
+ name = "windows-implement"
898
+ version = "0.60.2"
899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
900
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
901
+ dependencies = [
902
+ "proc-macro2",
903
+ "quote",
904
+ "syn",
905
+ ]
906
+
907
+ [[package]]
908
+ name = "windows-interface"
909
+ version = "0.59.3"
910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
911
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
912
+ dependencies = [
913
+ "proc-macro2",
914
+ "quote",
915
+ "syn",
916
+ ]
917
+
918
+ [[package]]
919
+ name = "windows-link"
920
+ version = "0.2.1"
921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
922
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
923
+
924
+ [[package]]
925
+ name = "windows-result"
926
+ version = "0.4.1"
927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
928
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
929
+ dependencies = [
930
+ "windows-link",
931
+ ]
932
+
933
+ [[package]]
934
+ name = "windows-strings"
935
+ version = "0.5.1"
936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
937
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
938
+ dependencies = [
939
+ "windows-link",
940
+ ]
941
+
942
+ [[package]]
943
+ name = "wit-bindgen"
944
+ version = "0.57.1"
945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
946
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
947
+
948
+ [[package]]
949
+ name = "zerocopy"
950
+ version = "0.8.52"
951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
952
+ checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
953
+ dependencies = [
954
+ "zerocopy-derive",
955
+ ]
956
+
957
+ [[package]]
958
+ name = "zerocopy-derive"
959
+ version = "0.8.52"
960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
961
+ checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
962
+ dependencies = [
963
+ "proc-macro2",
964
+ "quote",
965
+ "syn",
966
+ ]
967
+
968
+ [[package]]
969
+ name = "zmij"
970
+ version = "1.0.21"
971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
972
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"