pyturso 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 (180) hide show
  1. pyturso-0.1.0/Cargo.lock +4434 -0
  2. pyturso-0.1.0/Cargo.toml +53 -0
  3. pyturso-0.1.0/PKG-INFO +35 -0
  4. pyturso-0.1.0/bindings/python/Cargo.toml +26 -0
  5. pyturso-0.1.0/bindings/python/build.rs +3 -0
  6. pyturso-0.1.0/bindings/python/example.py +38 -0
  7. pyturso-0.1.0/bindings/python/requirements-dev.txt +28 -0
  8. pyturso-0.1.0/bindings/python/requirements.txt +2 -0
  9. pyturso-0.1.0/bindings/python/src/errors.rs +35 -0
  10. pyturso-0.1.0/bindings/python/src/lib.rs +384 -0
  11. pyturso-0.1.0/bindings/python/tests/__init__.py +0 -0
  12. pyturso-0.1.0/bindings/python/tests/test_database.py +178 -0
  13. pyturso-0.1.0/bindings/python/turso/__init__.py +29 -0
  14. pyturso-0.1.0/bindings/python/turso/py.typed +0 -0
  15. pyturso-0.1.0/core/Cargo.toml +112 -0
  16. pyturso-0.1.0/core/assert.rs +25 -0
  17. pyturso-0.1.0/core/benches/benchmark.rs +241 -0
  18. pyturso-0.1.0/core/benches/json_benchmark.rs +946 -0
  19. pyturso-0.1.0/core/benches/mvcc_benchmark.rs +129 -0
  20. pyturso-0.1.0/core/benches/tpc_h_benchmark.rs +142 -0
  21. pyturso-0.1.0/core/build.rs +21 -0
  22. pyturso-0.1.0/core/error.rs +91 -0
  23. pyturso-0.1.0/core/ext/dynamic.rs +179 -0
  24. pyturso-0.1.0/core/ext/mod.rs +188 -0
  25. pyturso-0.1.0/core/ext/vtab_xconnect.rs +274 -0
  26. pyturso-0.1.0/core/fast_lock.rs +83 -0
  27. pyturso-0.1.0/core/function.rs +820 -0
  28. pyturso-0.1.0/core/functions/datetime.rs +1692 -0
  29. pyturso-0.1.0/core/functions/mod.rs +3 -0
  30. pyturso-0.1.0/core/functions/printf.rs +272 -0
  31. pyturso-0.1.0/core/functions/strftime.rs +228 -0
  32. pyturso-0.1.0/core/info.rs +3 -0
  33. pyturso-0.1.0/core/io/clock.rs +9 -0
  34. pyturso-0.1.0/core/io/common.rs +53 -0
  35. pyturso-0.1.0/core/io/generic.rs +137 -0
  36. pyturso-0.1.0/core/io/io_uring.rs +360 -0
  37. pyturso-0.1.0/core/io/memory.rs +201 -0
  38. pyturso-0.1.0/core/io/mod.rs +252 -0
  39. pyturso-0.1.0/core/io/unix.rs +438 -0
  40. pyturso-0.1.0/core/io/vfs.rs +180 -0
  41. pyturso-0.1.0/core/io/windows.rs +123 -0
  42. pyturso-0.1.0/core/json/cache.rs +434 -0
  43. pyturso-0.1.0/core/json/error.rs +54 -0
  44. pyturso-0.1.0/core/json/jsonb.rs +3997 -0
  45. pyturso-0.1.0/core/json/mod.rs +1509 -0
  46. pyturso-0.1.0/core/json/ops.rs +384 -0
  47. pyturso-0.1.0/core/json/path.rs +498 -0
  48. pyturso-0.1.0/core/lib.rs +925 -0
  49. pyturso-0.1.0/core/mvcc/clock.rs +31 -0
  50. pyturso-0.1.0/core/mvcc/cursor.rs +200 -0
  51. pyturso-0.1.0/core/mvcc/database/mod.rs +909 -0
  52. pyturso-0.1.0/core/mvcc/database/tests.rs +1090 -0
  53. pyturso-0.1.0/core/mvcc/errors.rs +13 -0
  54. pyturso-0.1.0/core/mvcc/mod.rs +163 -0
  55. pyturso-0.1.0/core/mvcc/persistent_storage/mod.rs +32 -0
  56. pyturso-0.1.0/core/numeric/mod.rs +575 -0
  57. pyturso-0.1.0/core/numeric/nonnan.rs +105 -0
  58. pyturso-0.1.0/core/parameters.rs +124 -0
  59. pyturso-0.1.0/core/pragma.rs +252 -0
  60. pyturso-0.1.0/core/pseudo.rs +16 -0
  61. pyturso-0.1.0/core/result.rs +6 -0
  62. pyturso-0.1.0/core/schema.rs +1806 -0
  63. pyturso-0.1.0/core/series.rs +636 -0
  64. pyturso-0.1.0/core/storage/btree.rs +8735 -0
  65. pyturso-0.1.0/core/storage/buffer_pool.rs +37 -0
  66. pyturso-0.1.0/core/storage/database.rs +132 -0
  67. pyturso-0.1.0/core/storage/header_accessor.rs +161 -0
  68. pyturso-0.1.0/core/storage/mod.rs +29 -0
  69. pyturso-0.1.0/core/storage/page_cache.rs +1187 -0
  70. pyturso-0.1.0/core/storage/pager.rs +1617 -0
  71. pyturso-0.1.0/core/storage/sqlite3_ondisk.rs +1822 -0
  72. pyturso-0.1.0/core/storage/wal.rs +1105 -0
  73. pyturso-0.1.0/core/time/internal.rs +566 -0
  74. pyturso-0.1.0/core/time/mod.rs +1020 -0
  75. pyturso-0.1.0/core/translate/aggregation.rs +373 -0
  76. pyturso-0.1.0/core/translate/alter.rs +387 -0
  77. pyturso-0.1.0/core/translate/collate.rs +53 -0
  78. pyturso-0.1.0/core/translate/compound_select.rs +452 -0
  79. pyturso-0.1.0/core/translate/delete.rs +114 -0
  80. pyturso-0.1.0/core/translate/display.rs +572 -0
  81. pyturso-0.1.0/core/translate/emitter.rs +1145 -0
  82. pyturso-0.1.0/core/translate/expr.rs +3145 -0
  83. pyturso-0.1.0/core/translate/group_by.rs +1138 -0
  84. pyturso-0.1.0/core/translate/index.rs +454 -0
  85. pyturso-0.1.0/core/translate/insert.rs +909 -0
  86. pyturso-0.1.0/core/translate/integrity_check.rs +32 -0
  87. pyturso-0.1.0/core/translate/main_loop.rs +1459 -0
  88. pyturso-0.1.0/core/translate/mod.rs +230 -0
  89. pyturso-0.1.0/core/translate/optimizer/OPTIMIZER.md +162 -0
  90. pyturso-0.1.0/core/translate/optimizer/access_method.rs +148 -0
  91. pyturso-0.1.0/core/translate/optimizer/constraints.rs +414 -0
  92. pyturso-0.1.0/core/translate/optimizer/cost.rs +72 -0
  93. pyturso-0.1.0/core/translate/optimizer/join.rs +1697 -0
  94. pyturso-0.1.0/core/translate/optimizer/lift_common_subexpressions.rs +613 -0
  95. pyturso-0.1.0/core/translate/optimizer/mod.rs +1380 -0
  96. pyturso-0.1.0/core/translate/optimizer/order.rs +234 -0
  97. pyturso-0.1.0/core/translate/order_by.rs +319 -0
  98. pyturso-0.1.0/core/translate/plan.rs +1136 -0
  99. pyturso-0.1.0/core/translate/planner.rs +962 -0
  100. pyturso-0.1.0/core/translate/pragma.rs +414 -0
  101. pyturso-0.1.0/core/translate/result_row.rs +168 -0
  102. pyturso-0.1.0/core/translate/rollback.rs +32 -0
  103. pyturso-0.1.0/core/translate/schema.rs +930 -0
  104. pyturso-0.1.0/core/translate/select.rs +742 -0
  105. pyturso-0.1.0/core/translate/subquery.rs +98 -0
  106. pyturso-0.1.0/core/translate/transaction.rs +54 -0
  107. pyturso-0.1.0/core/translate/update.rs +350 -0
  108. pyturso-0.1.0/core/translate/values.rs +147 -0
  109. pyturso-0.1.0/core/types.rs +1870 -0
  110. pyturso-0.1.0/core/util.rs +2023 -0
  111. pyturso-0.1.0/core/uuid.rs +146 -0
  112. pyturso-0.1.0/core/vdbe/builder.rs +883 -0
  113. pyturso-0.1.0/core/vdbe/execute.rs +8306 -0
  114. pyturso-0.1.0/core/vdbe/explain.rs +1627 -0
  115. pyturso-0.1.0/core/vdbe/insn.rs +1128 -0
  116. pyturso-0.1.0/core/vdbe/likeop.rs +217 -0
  117. pyturso-0.1.0/core/vdbe/mod.rs +717 -0
  118. pyturso-0.1.0/core/vdbe/sorter.rs +57 -0
  119. pyturso-0.1.0/core/vector/mod.rs +79 -0
  120. pyturso-0.1.0/core/vector/vector_types.rs +648 -0
  121. pyturso-0.1.0/core/vtab.rs +371 -0
  122. pyturso-0.1.0/extensions/core/Cargo.toml +21 -0
  123. pyturso-0.1.0/extensions/core/README.md +461 -0
  124. pyturso-0.1.0/extensions/core/src/functions.rs +38 -0
  125. pyturso-0.1.0/extensions/core/src/lib.rs +44 -0
  126. pyturso-0.1.0/extensions/core/src/types.rs +508 -0
  127. pyturso-0.1.0/extensions/core/src/vfs_modules.rs +146 -0
  128. pyturso-0.1.0/extensions/core/src/vtabs.rs +675 -0
  129. pyturso-0.1.0/macros/Cargo.toml +20 -0
  130. pyturso-0.1.0/macros/src/ext/agg_derive.rs +87 -0
  131. pyturso-0.1.0/macros/src/ext/mod.rs +212 -0
  132. pyturso-0.1.0/macros/src/ext/scalars.rs +74 -0
  133. pyturso-0.1.0/macros/src/ext/vfs_derive.rs +218 -0
  134. pyturso-0.1.0/macros/src/ext/vtab_derive.rs +257 -0
  135. pyturso-0.1.0/macros/src/lib.rs +445 -0
  136. pyturso-0.1.0/pyproject.toml +86 -0
  137. pyturso-0.1.0/turso/__init__.py +29 -0
  138. pyturso-0.1.0/turso/py.typed +0 -0
  139. pyturso-0.1.0/vendored/sqlite3-parser/.github/dependabot.yml +11 -0
  140. pyturso-0.1.0/vendored/sqlite3-parser/.github/workflows/rust.yml +36 -0
  141. pyturso-0.1.0/vendored/sqlite3-parser/.gitignore +6 -0
  142. pyturso-0.1.0/vendored/sqlite3-parser/CMakeLists.txt +5 -0
  143. pyturso-0.1.0/vendored/sqlite3-parser/Cargo.toml +51 -0
  144. pyturso-0.1.0/vendored/sqlite3-parser/LICENSE +24 -0
  145. pyturso-0.1.0/vendored/sqlite3-parser/README.md +79 -0
  146. pyturso-0.1.0/vendored/sqlite3-parser/Sync.md +7 -0
  147. pyturso-0.1.0/vendored/sqlite3-parser/benches/keyword.rs +154 -0
  148. pyturso-0.1.0/vendored/sqlite3-parser/build.rs +211 -0
  149. pyturso-0.1.0/vendored/sqlite3-parser/checks.md +124 -0
  150. pyturso-0.1.0/vendored/sqlite3-parser/examples/simple.y +123 -0
  151. pyturso-0.1.0/vendored/sqlite3-parser/examples/sql_check.rs +55 -0
  152. pyturso-0.1.0/vendored/sqlite3-parser/examples/sql_cmd.rs +26 -0
  153. pyturso-0.1.0/vendored/sqlite3-parser/examples/sql_cmds.rs +42 -0
  154. pyturso-0.1.0/vendored/sqlite3-parser/examples/sql_tokens.rs +90 -0
  155. pyturso-0.1.0/vendored/sqlite3-parser/src/dialect/mod.rs +244 -0
  156. pyturso-0.1.0/vendored/sqlite3-parser/src/dialect/token.rs +181 -0
  157. pyturso-0.1.0/vendored/sqlite3-parser/src/lexer/mod.rs +6 -0
  158. pyturso-0.1.0/vendored/sqlite3-parser/src/lexer/scan.rs +174 -0
  159. pyturso-0.1.0/vendored/sqlite3-parser/src/lexer/sql/error.rs +159 -0
  160. pyturso-0.1.0/vendored/sqlite3-parser/src/lexer/sql/mod.rs +770 -0
  161. pyturso-0.1.0/vendored/sqlite3-parser/src/lexer/sql/test.rs +375 -0
  162. pyturso-0.1.0/vendored/sqlite3-parser/src/lib.rs +9 -0
  163. pyturso-0.1.0/vendored/sqlite3-parser/src/parser/ast/check.rs +358 -0
  164. pyturso-0.1.0/vendored/sqlite3-parser/src/parser/ast/fmt.rs +2086 -0
  165. pyturso-0.1.0/vendored/sqlite3-parser/src/parser/ast/mod.rs +2121 -0
  166. pyturso-0.1.0/vendored/sqlite3-parser/src/parser/mod.rs +154 -0
  167. pyturso-0.1.0/vendored/sqlite3-parser/src/parser/parse.y +1492 -0
  168. pyturso-0.1.0/vendored/sqlite3-parser/src/to_sql_string/expr.rs +428 -0
  169. pyturso-0.1.0/vendored/sqlite3-parser/src/to_sql_string/mod.rs +45 -0
  170. pyturso-0.1.0/vendored/sqlite3-parser/src/to_sql_string/stmt/alter_table.rs +277 -0
  171. pyturso-0.1.0/vendored/sqlite3-parser/src/to_sql_string/stmt/create_table.rs +240 -0
  172. pyturso-0.1.0/vendored/sqlite3-parser/src/to_sql_string/stmt/create_trigger.rs +305 -0
  173. pyturso-0.1.0/vendored/sqlite3-parser/src/to_sql_string/stmt/create_virtual_table.rs +84 -0
  174. pyturso-0.1.0/vendored/sqlite3-parser/src/to_sql_string/stmt/delete.rs +133 -0
  175. pyturso-0.1.0/vendored/sqlite3-parser/src/to_sql_string/stmt/insert.rs +148 -0
  176. pyturso-0.1.0/vendored/sqlite3-parser/src/to_sql_string/stmt/mod.rs +417 -0
  177. pyturso-0.1.0/vendored/sqlite3-parser/src/to_sql_string/stmt/select.rs +674 -0
  178. pyturso-0.1.0/vendored/sqlite3-parser/src/to_sql_string/stmt/update.rs +139 -0
  179. pyturso-0.1.0/vendored/sqlite3-parser/third_party/lemon/lemon.c +5880 -0
  180. pyturso-0.1.0/vendored/sqlite3-parser/third_party/lemon/lempar.rs +902 -0
@@ -0,0 +1,4434 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "addr2line"
7
+ version = "0.24.2"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
10
+ dependencies = [
11
+ "gimli",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "adler2"
16
+ version = "2.0.0"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
19
+
20
+ [[package]]
21
+ name = "ahash"
22
+ version = "0.8.11"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
25
+ dependencies = [
26
+ "cfg-if",
27
+ "getrandom 0.2.15",
28
+ "once_cell",
29
+ "version_check",
30
+ "zerocopy 0.7.35",
31
+ ]
32
+
33
+ [[package]]
34
+ name = "aho-corasick"
35
+ version = "1.1.3"
36
+ source = "registry+https://github.com/rust-lang/crates.io-index"
37
+ checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
38
+ dependencies = [
39
+ "memchr",
40
+ ]
41
+
42
+ [[package]]
43
+ name = "aligned-vec"
44
+ version = "0.6.4"
45
+ source = "registry+https://github.com/rust-lang/crates.io-index"
46
+ checksum = "dc890384c8602f339876ded803c97ad529f3842aba97f6392b3dba0dd171769b"
47
+ dependencies = [
48
+ "equator",
49
+ ]
50
+
51
+ [[package]]
52
+ name = "allocator-api2"
53
+ version = "0.2.21"
54
+ source = "registry+https://github.com/rust-lang/crates.io-index"
55
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
56
+
57
+ [[package]]
58
+ name = "anarchist-readable-name-generator-lib"
59
+ version = "0.1.2"
60
+ source = "registry+https://github.com/rust-lang/crates.io-index"
61
+ checksum = "18a1e15a87b13ae79e04e07b3714fc41d5f6993dff11662fdbe0b207c6ad0fe0"
62
+ dependencies = [
63
+ "rand 0.8.5",
64
+ ]
65
+
66
+ [[package]]
67
+ name = "android-tzdata"
68
+ version = "0.1.1"
69
+ source = "registry+https://github.com/rust-lang/crates.io-index"
70
+ checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
71
+
72
+ [[package]]
73
+ name = "android_system_properties"
74
+ version = "0.1.5"
75
+ source = "registry+https://github.com/rust-lang/crates.io-index"
76
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
77
+ dependencies = [
78
+ "libc",
79
+ ]
80
+
81
+ [[package]]
82
+ name = "anes"
83
+ version = "0.1.6"
84
+ source = "registry+https://github.com/rust-lang/crates.io-index"
85
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
86
+
87
+ [[package]]
88
+ name = "anstream"
89
+ version = "0.6.18"
90
+ source = "registry+https://github.com/rust-lang/crates.io-index"
91
+ checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b"
92
+ dependencies = [
93
+ "anstyle",
94
+ "anstyle-parse",
95
+ "anstyle-query",
96
+ "anstyle-wincon",
97
+ "colorchoice",
98
+ "is_terminal_polyfill",
99
+ "utf8parse",
100
+ ]
101
+
102
+ [[package]]
103
+ name = "anstyle"
104
+ version = "1.0.10"
105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
106
+ checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
107
+
108
+ [[package]]
109
+ name = "anstyle-parse"
110
+ version = "0.2.6"
111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
112
+ checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9"
113
+ dependencies = [
114
+ "utf8parse",
115
+ ]
116
+
117
+ [[package]]
118
+ name = "anstyle-query"
119
+ version = "1.1.2"
120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
121
+ checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c"
122
+ dependencies = [
123
+ "windows-sys 0.59.0",
124
+ ]
125
+
126
+ [[package]]
127
+ name = "anstyle-wincon"
128
+ version = "3.0.7"
129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
130
+ checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e"
131
+ dependencies = [
132
+ "anstyle",
133
+ "once_cell",
134
+ "windows-sys 0.59.0",
135
+ ]
136
+
137
+ [[package]]
138
+ name = "antithesis_sdk"
139
+ version = "0.2.5"
140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
141
+ checksum = "201eba73b76341631014baf9c0018e703af204a1e0f15d7664d8a0947f6be74d"
142
+ dependencies = [
143
+ "libc",
144
+ "libloading",
145
+ "linkme",
146
+ "once_cell",
147
+ "rand 0.8.5",
148
+ "rustc_version_runtime",
149
+ "serde",
150
+ "serde_json",
151
+ ]
152
+
153
+ [[package]]
154
+ name = "anyhow"
155
+ version = "1.0.98"
156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
157
+ checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
158
+
159
+ [[package]]
160
+ name = "arrayref"
161
+ version = "0.3.9"
162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
163
+ checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
164
+
165
+ [[package]]
166
+ name = "arrayvec"
167
+ version = "0.7.6"
168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
169
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
170
+
171
+ [[package]]
172
+ name = "assert_cmd"
173
+ version = "2.0.16"
174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
175
+ checksum = "dc1835b7f27878de8525dc71410b5a31cdcc5f230aed5ba5df968e09c201b23d"
176
+ dependencies = [
177
+ "anstyle",
178
+ "bstr",
179
+ "doc-comment",
180
+ "libc",
181
+ "predicates",
182
+ "predicates-core",
183
+ "predicates-tree",
184
+ "wait-timeout",
185
+ ]
186
+
187
+ [[package]]
188
+ name = "autocfg"
189
+ version = "1.4.0"
190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
191
+ checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
192
+
193
+ [[package]]
194
+ name = "backtrace"
195
+ version = "0.3.74"
196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
197
+ checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
198
+ dependencies = [
199
+ "addr2line",
200
+ "cfg-if",
201
+ "libc",
202
+ "miniz_oxide",
203
+ "object",
204
+ "rustc-demangle",
205
+ "windows-targets 0.52.6",
206
+ ]
207
+
208
+ [[package]]
209
+ name = "backtrace-ext"
210
+ version = "0.2.1"
211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
212
+ checksum = "537beee3be4a18fb023b570f80e3ae28003db9167a751266b259926e25539d50"
213
+ dependencies = [
214
+ "backtrace",
215
+ ]
216
+
217
+ [[package]]
218
+ name = "base64"
219
+ version = "0.22.1"
220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
221
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
222
+
223
+ [[package]]
224
+ name = "bincode"
225
+ version = "1.3.3"
226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
227
+ checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
228
+ dependencies = [
229
+ "serde",
230
+ ]
231
+
232
+ [[package]]
233
+ name = "bitflags"
234
+ version = "1.3.2"
235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
236
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
237
+
238
+ [[package]]
239
+ name = "bitflags"
240
+ version = "2.9.0"
241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
242
+ checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
243
+ dependencies = [
244
+ "serde",
245
+ ]
246
+
247
+ [[package]]
248
+ name = "blake3"
249
+ version = "1.7.0"
250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
251
+ checksum = "b17679a8d69b6d7fd9cd9801a536cec9fa5e5970b69f9d4747f70b39b031f5e7"
252
+ dependencies = [
253
+ "arrayref",
254
+ "arrayvec",
255
+ "cc",
256
+ "cfg-if",
257
+ "constant_time_eq",
258
+ ]
259
+
260
+ [[package]]
261
+ name = "bstr"
262
+ version = "1.11.3"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "531a9155a481e2ee699d4f98f43c0ca4ff8ee1bfd55c31e9e98fb29d2b176fe0"
265
+ dependencies = [
266
+ "memchr",
267
+ "regex-automata 0.4.9",
268
+ "serde",
269
+ ]
270
+
271
+ [[package]]
272
+ name = "built"
273
+ version = "0.7.7"
274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
275
+ checksum = "56ed6191a7e78c36abdb16ab65341eefd73d64d303fffccdbb00d51e4205967b"
276
+ dependencies = [
277
+ "chrono",
278
+ "git2",
279
+ ]
280
+
281
+ [[package]]
282
+ name = "bumpalo"
283
+ version = "3.17.0"
284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
285
+ checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
286
+
287
+ [[package]]
288
+ name = "bytemuck"
289
+ version = "1.22.0"
290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
291
+ checksum = "b6b1fc10dbac614ebc03540c9dbd60e83887fda27794998c6528f1782047d540"
292
+
293
+ [[package]]
294
+ name = "bytes"
295
+ version = "1.10.1"
296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
297
+ checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
298
+
299
+ [[package]]
300
+ name = "cast"
301
+ version = "0.3.0"
302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
303
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
304
+
305
+ [[package]]
306
+ name = "cc"
307
+ version = "1.2.17"
308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
309
+ checksum = "1fcb57c740ae1daf453ae85f16e37396f672b039e00d9d866e07ddb24e328e3a"
310
+ dependencies = [
311
+ "jobserver",
312
+ "libc",
313
+ "shlex",
314
+ ]
315
+
316
+ [[package]]
317
+ name = "cesu8"
318
+ version = "1.1.0"
319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
320
+ checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
321
+
322
+ [[package]]
323
+ name = "cfg-if"
324
+ version = "1.0.0"
325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
326
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
327
+
328
+ [[package]]
329
+ name = "cfg_aliases"
330
+ version = "0.2.1"
331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
332
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
333
+
334
+ [[package]]
335
+ name = "cfg_block"
336
+ version = "0.1.1"
337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
338
+ checksum = "18758054972164c3264f7c8386f5fc6da6114cb46b619fd365d4e3b2dc3ae487"
339
+
340
+ [[package]]
341
+ name = "chrono"
342
+ version = "0.4.40"
343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
344
+ checksum = "1a7964611d71df112cb1730f2ee67324fcf4d0fc6606acbbe9bfe06df124637c"
345
+ dependencies = [
346
+ "android-tzdata",
347
+ "iana-time-zone",
348
+ "js-sys",
349
+ "num-traits",
350
+ "serde",
351
+ "wasm-bindgen",
352
+ "windows-link",
353
+ ]
354
+
355
+ [[package]]
356
+ name = "ciborium"
357
+ version = "0.2.2"
358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
359
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
360
+ dependencies = [
361
+ "ciborium-io",
362
+ "ciborium-ll",
363
+ "serde",
364
+ ]
365
+
366
+ [[package]]
367
+ name = "ciborium-io"
368
+ version = "0.2.2"
369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
370
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
371
+
372
+ [[package]]
373
+ name = "ciborium-ll"
374
+ version = "0.2.2"
375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
376
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
377
+ dependencies = [
378
+ "ciborium-io",
379
+ "half",
380
+ ]
381
+
382
+ [[package]]
383
+ name = "clap"
384
+ version = "4.5.32"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ checksum = "6088f3ae8c3608d19260cd7445411865a485688711b78b5be70d78cd96136f83"
387
+ dependencies = [
388
+ "clap_builder",
389
+ "clap_derive",
390
+ ]
391
+
392
+ [[package]]
393
+ name = "clap_builder"
394
+ version = "4.5.32"
395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
396
+ checksum = "22a7ef7f676155edfb82daa97f99441f3ebf4a58d5e32f295a56259f1b6facc8"
397
+ dependencies = [
398
+ "anstream",
399
+ "anstyle",
400
+ "clap_lex",
401
+ "strsim",
402
+ ]
403
+
404
+ [[package]]
405
+ name = "clap_complete"
406
+ version = "4.5.47"
407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
408
+ checksum = "c06f5378ea264ad4f82bbc826628b5aad714a75abf6ece087e923010eb937fb6"
409
+ dependencies = [
410
+ "clap",
411
+ "clap_lex",
412
+ "is_executable",
413
+ "shlex",
414
+ ]
415
+
416
+ [[package]]
417
+ name = "clap_derive"
418
+ version = "4.5.32"
419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
420
+ checksum = "09176aae279615badda0765c0c0b3f6ed53f4709118af73cf4655d85d1530cd7"
421
+ dependencies = [
422
+ "heck",
423
+ "proc-macro2",
424
+ "quote",
425
+ "syn 2.0.100",
426
+ ]
427
+
428
+ [[package]]
429
+ name = "clap_lex"
430
+ version = "0.7.4"
431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
432
+ checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
433
+
434
+ [[package]]
435
+ name = "clipboard-win"
436
+ version = "5.4.0"
437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
438
+ checksum = "15efe7a882b08f34e38556b14f2fb3daa98769d06c7f0c1b076dfd0d983bc892"
439
+ dependencies = [
440
+ "error-code",
441
+ ]
442
+
443
+ [[package]]
444
+ name = "colorchoice"
445
+ version = "1.0.3"
446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
447
+ checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
448
+
449
+ [[package]]
450
+ name = "combine"
451
+ version = "4.6.7"
452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
453
+ checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
454
+ dependencies = [
455
+ "bytes",
456
+ "memchr",
457
+ ]
458
+
459
+ [[package]]
460
+ name = "comfy-table"
461
+ version = "7.1.4"
462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
463
+ checksum = "4a65ebfec4fb190b6f90e944a817d60499ee0744e582530e2c9900a22e591d9a"
464
+ dependencies = [
465
+ "crossterm",
466
+ "unicode-segmentation",
467
+ "unicode-width 0.2.0",
468
+ ]
469
+
470
+ [[package]]
471
+ name = "comma"
472
+ version = "1.0.0"
473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
474
+ checksum = "55b672471b4e9f9e95499ea597ff64941a309b2cdbffcc46f2cc5e2d971fd335"
475
+
476
+ [[package]]
477
+ name = "concurrent-queue"
478
+ version = "2.5.0"
479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
480
+ checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
481
+ dependencies = [
482
+ "crossbeam-utils",
483
+ ]
484
+
485
+ [[package]]
486
+ name = "console_error_panic_hook"
487
+ version = "0.1.7"
488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
489
+ checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc"
490
+ dependencies = [
491
+ "cfg-if",
492
+ "wasm-bindgen",
493
+ ]
494
+
495
+ [[package]]
496
+ name = "constant_time_eq"
497
+ version = "0.3.1"
498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
499
+ checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
500
+
501
+ [[package]]
502
+ name = "convert_case"
503
+ version = "0.6.0"
504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
505
+ checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
506
+ dependencies = [
507
+ "unicode-segmentation",
508
+ ]
509
+
510
+ [[package]]
511
+ name = "core-foundation-sys"
512
+ version = "0.8.7"
513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
514
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
515
+
516
+ [[package]]
517
+ name = "core_tester"
518
+ version = "0.1.0"
519
+ dependencies = [
520
+ "anyhow",
521
+ "assert_cmd",
522
+ "env_logger 0.10.2",
523
+ "log",
524
+ "rand 0.9.0",
525
+ "rand_chacha 0.9.0",
526
+ "rexpect",
527
+ "rusqlite",
528
+ "tempfile",
529
+ "test-log",
530
+ "tracing",
531
+ "tracing-subscriber",
532
+ "turso_core",
533
+ ]
534
+
535
+ [[package]]
536
+ name = "cpp_demangle"
537
+ version = "0.4.4"
538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
539
+ checksum = "96e58d342ad113c2b878f16d5d034c03be492ae460cdbc02b7f0f2284d310c7d"
540
+ dependencies = [
541
+ "cfg-if",
542
+ ]
543
+
544
+ [[package]]
545
+ name = "crc32fast"
546
+ version = "1.4.2"
547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
548
+ checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
549
+ dependencies = [
550
+ "cfg-if",
551
+ ]
552
+
553
+ [[package]]
554
+ name = "criterion"
555
+ version = "0.5.1"
556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
557
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
558
+ dependencies = [
559
+ "anes",
560
+ "cast",
561
+ "ciborium",
562
+ "clap",
563
+ "criterion-plot",
564
+ "futures",
565
+ "is-terminal",
566
+ "itertools",
567
+ "num-traits",
568
+ "once_cell",
569
+ "oorandom",
570
+ "plotters",
571
+ "rayon",
572
+ "regex",
573
+ "serde",
574
+ "serde_derive",
575
+ "serde_json",
576
+ "tinytemplate",
577
+ "walkdir",
578
+ ]
579
+
580
+ [[package]]
581
+ name = "criterion-plot"
582
+ version = "0.5.0"
583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
584
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
585
+ dependencies = [
586
+ "cast",
587
+ "itertools",
588
+ ]
589
+
590
+ [[package]]
591
+ name = "crossbeam-channel"
592
+ version = "0.5.14"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "06ba6d68e24814cb8de6bb986db8222d3a027d15872cabc0d18817bc3c0e4471"
595
+ dependencies = [
596
+ "crossbeam-utils",
597
+ ]
598
+
599
+ [[package]]
600
+ name = "crossbeam-deque"
601
+ version = "0.8.6"
602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
603
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
604
+ dependencies = [
605
+ "crossbeam-epoch",
606
+ "crossbeam-utils",
607
+ ]
608
+
609
+ [[package]]
610
+ name = "crossbeam-epoch"
611
+ version = "0.9.18"
612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
613
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
614
+ dependencies = [
615
+ "crossbeam-utils",
616
+ ]
617
+
618
+ [[package]]
619
+ name = "crossbeam-skiplist"
620
+ version = "0.1.3"
621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
622
+ checksum = "df29de440c58ca2cc6e587ec3d22347551a32435fbde9d2bff64e78a9ffa151b"
623
+ dependencies = [
624
+ "crossbeam-epoch",
625
+ "crossbeam-utils",
626
+ ]
627
+
628
+ [[package]]
629
+ name = "crossbeam-utils"
630
+ version = "0.8.21"
631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
632
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
633
+
634
+ [[package]]
635
+ name = "crossterm"
636
+ version = "0.28.1"
637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
638
+ checksum = "829d955a0bb380ef178a640b91779e3987da38c9aea133b20614cfed8cdea9c6"
639
+ dependencies = [
640
+ "bitflags 2.9.0",
641
+ "crossterm_winapi",
642
+ "parking_lot",
643
+ "rustix 0.38.44",
644
+ "winapi",
645
+ ]
646
+
647
+ [[package]]
648
+ name = "crossterm_winapi"
649
+ version = "0.9.1"
650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
651
+ checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
652
+ dependencies = [
653
+ "winapi",
654
+ ]
655
+
656
+ [[package]]
657
+ name = "crunchy"
658
+ version = "0.2.3"
659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
660
+ checksum = "43da5946c66ffcc7745f48db692ffbb10a83bfe0afd96235c5c2a4fb23994929"
661
+
662
+ [[package]]
663
+ name = "csv"
664
+ version = "1.3.1"
665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
666
+ checksum = "acdc4883a9c96732e4733212c01447ebd805833b7275a73ca3ee080fd77afdaf"
667
+ dependencies = [
668
+ "csv-core",
669
+ "itoa",
670
+ "ryu",
671
+ "serde",
672
+ ]
673
+
674
+ [[package]]
675
+ name = "csv-core"
676
+ version = "0.1.12"
677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
678
+ checksum = "7d02f3b0da4c6504f86e9cd789d8dbafab48c2321be74e9987593de5a894d93d"
679
+ dependencies = [
680
+ "memchr",
681
+ ]
682
+
683
+ [[package]]
684
+ name = "ctor"
685
+ version = "0.2.9"
686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
687
+ checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501"
688
+ dependencies = [
689
+ "quote",
690
+ "syn 2.0.100",
691
+ ]
692
+
693
+ [[package]]
694
+ name = "ctrlc"
695
+ version = "3.4.5"
696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
697
+ checksum = "90eeab0aa92f3f9b4e87f258c72b139c207d251f9cbc1080a0086b86a8870dd3"
698
+ dependencies = [
699
+ "nix 0.29.0",
700
+ "windows-sys 0.59.0",
701
+ ]
702
+
703
+ [[package]]
704
+ name = "darling"
705
+ version = "0.20.11"
706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
707
+ checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
708
+ dependencies = [
709
+ "darling_core",
710
+ "darling_macro",
711
+ ]
712
+
713
+ [[package]]
714
+ name = "darling_core"
715
+ version = "0.20.11"
716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
717
+ checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
718
+ dependencies = [
719
+ "fnv",
720
+ "ident_case",
721
+ "proc-macro2",
722
+ "quote",
723
+ "strsim",
724
+ "syn 2.0.100",
725
+ ]
726
+
727
+ [[package]]
728
+ name = "darling_macro"
729
+ version = "0.20.11"
730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
731
+ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
732
+ dependencies = [
733
+ "darling_core",
734
+ "quote",
735
+ "syn 2.0.100",
736
+ ]
737
+
738
+ [[package]]
739
+ name = "data-encoding"
740
+ version = "2.8.0"
741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
742
+ checksum = "575f75dfd25738df5b91b8e43e14d44bda14637a58fae779fd2b064f8bf3e010"
743
+
744
+ [[package]]
745
+ name = "debugid"
746
+ version = "0.8.0"
747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
748
+ checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d"
749
+ dependencies = [
750
+ "uuid",
751
+ ]
752
+
753
+ [[package]]
754
+ name = "deranged"
755
+ version = "0.4.1"
756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
757
+ checksum = "28cfac68e08048ae1883171632c2aef3ebc555621ae56fbccce1cbf22dd7f058"
758
+ dependencies = [
759
+ "powerfmt",
760
+ ]
761
+
762
+ [[package]]
763
+ name = "difflib"
764
+ version = "0.4.0"
765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
766
+ checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
767
+
768
+ [[package]]
769
+ name = "dirs"
770
+ version = "5.0.1"
771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
772
+ checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
773
+ dependencies = [
774
+ "dirs-sys 0.4.1",
775
+ ]
776
+
777
+ [[package]]
778
+ name = "dirs"
779
+ version = "6.0.0"
780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
781
+ checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
782
+ dependencies = [
783
+ "dirs-sys 0.5.0",
784
+ ]
785
+
786
+ [[package]]
787
+ name = "dirs-sys"
788
+ version = "0.4.1"
789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
790
+ checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
791
+ dependencies = [
792
+ "libc",
793
+ "option-ext",
794
+ "redox_users 0.4.6",
795
+ "windows-sys 0.48.0",
796
+ ]
797
+
798
+ [[package]]
799
+ name = "dirs-sys"
800
+ version = "0.5.0"
801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
802
+ checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
803
+ dependencies = [
804
+ "libc",
805
+ "option-ext",
806
+ "redox_users 0.5.0",
807
+ "windows-sys 0.59.0",
808
+ ]
809
+
810
+ [[package]]
811
+ name = "displaydoc"
812
+ version = "0.2.5"
813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
814
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
815
+ dependencies = [
816
+ "proc-macro2",
817
+ "quote",
818
+ "syn 2.0.100",
819
+ ]
820
+
821
+ [[package]]
822
+ name = "doc-comment"
823
+ version = "0.3.3"
824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
825
+ checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
826
+
827
+ [[package]]
828
+ name = "dyn-clone"
829
+ version = "1.0.19"
830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
831
+ checksum = "1c7a8fb8a9fbf66c1f703fe16184d10ca0ee9d23be5b4436400408ba54a95005"
832
+
833
+ [[package]]
834
+ name = "either"
835
+ version = "1.15.0"
836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
837
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
838
+
839
+ [[package]]
840
+ name = "endian-type"
841
+ version = "0.1.2"
842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
843
+ checksum = "c34f04666d835ff5d62e058c3995147c06f42fe86ff053337632bca83e42702d"
844
+
845
+ [[package]]
846
+ name = "env_filter"
847
+ version = "0.1.3"
848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
849
+ checksum = "186e05a59d4c50738528153b83b0b0194d3a29507dfec16eccd4b342903397d0"
850
+ dependencies = [
851
+ "log",
852
+ "regex",
853
+ ]
854
+
855
+ [[package]]
856
+ name = "env_logger"
857
+ version = "0.10.2"
858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
859
+ checksum = "4cd405aab171cb85d6735e5c8d9db038c17d3ca007a4d2c25f337935c3d90580"
860
+ dependencies = [
861
+ "humantime",
862
+ "is-terminal",
863
+ "log",
864
+ "regex",
865
+ "termcolor",
866
+ ]
867
+
868
+ [[package]]
869
+ name = "env_logger"
870
+ version = "0.11.7"
871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
872
+ checksum = "c3716d7a920fb4fac5d84e9d4bce8ceb321e9414b4409da61b07b75c1e3d0697"
873
+ dependencies = [
874
+ "anstream",
875
+ "anstyle",
876
+ "env_filter",
877
+ "jiff",
878
+ "log",
879
+ ]
880
+
881
+ [[package]]
882
+ name = "equator"
883
+ version = "0.4.2"
884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
885
+ checksum = "4711b213838dfee0117e3be6ac926007d7f433d7bbe33595975d4190cb07e6fc"
886
+ dependencies = [
887
+ "equator-macro",
888
+ ]
889
+
890
+ [[package]]
891
+ name = "equator-macro"
892
+ version = "0.4.2"
893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
894
+ checksum = "44f23cf4b44bfce11a86ace86f8a73ffdec849c9fd00a386a53d278bd9e81fb3"
895
+ dependencies = [
896
+ "proc-macro2",
897
+ "quote",
898
+ "syn 2.0.100",
899
+ ]
900
+
901
+ [[package]]
902
+ name = "equivalent"
903
+ version = "1.0.2"
904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
905
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
906
+
907
+ [[package]]
908
+ name = "errno"
909
+ version = "0.3.10"
910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
911
+ checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
912
+ dependencies = [
913
+ "libc",
914
+ "windows-sys 0.59.0",
915
+ ]
916
+
917
+ [[package]]
918
+ name = "error-code"
919
+ version = "3.3.1"
920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
921
+ checksum = "a5d9305ccc6942a704f4335694ecd3de2ea531b114ac2d51f5f843750787a92f"
922
+
923
+ [[package]]
924
+ name = "fallible-iterator"
925
+ version = "0.3.0"
926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
927
+ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
928
+
929
+ [[package]]
930
+ name = "fallible-streaming-iterator"
931
+ version = "0.1.9"
932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
933
+ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
934
+
935
+ [[package]]
936
+ name = "fastrand"
937
+ version = "2.3.0"
938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
939
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
940
+
941
+ [[package]]
942
+ name = "fd-lock"
943
+ version = "4.0.4"
944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
945
+ checksum = "0ce92ff622d6dadf7349484f42c93271a0d49b7cc4d466a936405bacbe10aa78"
946
+ dependencies = [
947
+ "cfg-if",
948
+ "rustix 1.0.7",
949
+ "windows-sys 0.59.0",
950
+ ]
951
+
952
+ [[package]]
953
+ name = "filetime"
954
+ version = "0.2.25"
955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
956
+ checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586"
957
+ dependencies = [
958
+ "cfg-if",
959
+ "libc",
960
+ "libredox",
961
+ "windows-sys 0.59.0",
962
+ ]
963
+
964
+ [[package]]
965
+ name = "findshlibs"
966
+ version = "0.10.2"
967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
968
+ checksum = "40b9e59cd0f7e0806cca4be089683ecb6434e602038df21fe6bf6711b2f07f64"
969
+ dependencies = [
970
+ "cc",
971
+ "lazy_static",
972
+ "libc",
973
+ "winapi",
974
+ ]
975
+
976
+ [[package]]
977
+ name = "flate2"
978
+ version = "1.1.0"
979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
980
+ checksum = "11faaf5a5236997af9848be0bef4db95824b1d534ebc64d0f0c6cf3e67bd38dc"
981
+ dependencies = [
982
+ "crc32fast",
983
+ "miniz_oxide",
984
+ ]
985
+
986
+ [[package]]
987
+ name = "fnv"
988
+ version = "1.0.7"
989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
990
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
991
+
992
+ [[package]]
993
+ name = "foldhash"
994
+ version = "0.1.5"
995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
996
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
997
+
998
+ [[package]]
999
+ name = "form_urlencoded"
1000
+ version = "1.2.1"
1001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1002
+ checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
1003
+ dependencies = [
1004
+ "percent-encoding",
1005
+ ]
1006
+
1007
+ [[package]]
1008
+ name = "fsevent-sys"
1009
+ version = "4.1.0"
1010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1011
+ checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2"
1012
+ dependencies = [
1013
+ "libc",
1014
+ ]
1015
+
1016
+ [[package]]
1017
+ name = "futures"
1018
+ version = "0.3.31"
1019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1020
+ checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
1021
+ dependencies = [
1022
+ "futures-channel",
1023
+ "futures-core",
1024
+ "futures-executor",
1025
+ "futures-io",
1026
+ "futures-sink",
1027
+ "futures-task",
1028
+ "futures-util",
1029
+ ]
1030
+
1031
+ [[package]]
1032
+ name = "futures-channel"
1033
+ version = "0.3.31"
1034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1035
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
1036
+ dependencies = [
1037
+ "futures-core",
1038
+ "futures-sink",
1039
+ ]
1040
+
1041
+ [[package]]
1042
+ name = "futures-core"
1043
+ version = "0.3.31"
1044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1045
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
1046
+
1047
+ [[package]]
1048
+ name = "futures-executor"
1049
+ version = "0.3.31"
1050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1051
+ checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
1052
+ dependencies = [
1053
+ "futures-core",
1054
+ "futures-task",
1055
+ "futures-util",
1056
+ ]
1057
+
1058
+ [[package]]
1059
+ name = "futures-io"
1060
+ version = "0.3.31"
1061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1062
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
1063
+
1064
+ [[package]]
1065
+ name = "futures-macro"
1066
+ version = "0.3.31"
1067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1068
+ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
1069
+ dependencies = [
1070
+ "proc-macro2",
1071
+ "quote",
1072
+ "syn 2.0.100",
1073
+ ]
1074
+
1075
+ [[package]]
1076
+ name = "futures-sink"
1077
+ version = "0.3.31"
1078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1079
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
1080
+
1081
+ [[package]]
1082
+ name = "futures-task"
1083
+ version = "0.3.31"
1084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1085
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
1086
+
1087
+ [[package]]
1088
+ name = "futures-timer"
1089
+ version = "3.0.3"
1090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1091
+ checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
1092
+
1093
+ [[package]]
1094
+ name = "futures-util"
1095
+ version = "0.3.31"
1096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1097
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
1098
+ dependencies = [
1099
+ "futures-channel",
1100
+ "futures-core",
1101
+ "futures-io",
1102
+ "futures-macro",
1103
+ "futures-sink",
1104
+ "futures-task",
1105
+ "memchr",
1106
+ "pin-project-lite",
1107
+ "pin-utils",
1108
+ "slab",
1109
+ ]
1110
+
1111
+ [[package]]
1112
+ name = "getrandom"
1113
+ version = "0.2.15"
1114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1115
+ checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
1116
+ dependencies = [
1117
+ "cfg-if",
1118
+ "js-sys",
1119
+ "libc",
1120
+ "wasi 0.11.0+wasi-snapshot-preview1",
1121
+ "wasm-bindgen",
1122
+ ]
1123
+
1124
+ [[package]]
1125
+ name = "getrandom"
1126
+ version = "0.3.2"
1127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1128
+ checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0"
1129
+ dependencies = [
1130
+ "cfg-if",
1131
+ "libc",
1132
+ "r-efi",
1133
+ "wasi 0.14.2+wasi-0.2.4",
1134
+ ]
1135
+
1136
+ [[package]]
1137
+ name = "gimli"
1138
+ version = "0.31.1"
1139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1140
+ checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
1141
+
1142
+ [[package]]
1143
+ name = "git2"
1144
+ version = "0.20.1"
1145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1146
+ checksum = "5220b8ba44c68a9a7f7a7659e864dd73692e417ef0211bea133c7b74e031eeb9"
1147
+ dependencies = [
1148
+ "bitflags 2.9.0",
1149
+ "libc",
1150
+ "libgit2-sys",
1151
+ "log",
1152
+ "url",
1153
+ ]
1154
+
1155
+ [[package]]
1156
+ name = "glob"
1157
+ version = "0.3.2"
1158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1159
+ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
1160
+
1161
+ [[package]]
1162
+ name = "half"
1163
+ version = "2.5.0"
1164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1165
+ checksum = "7db2ff139bba50379da6aa0766b52fdcb62cb5b263009b09ed58ba604e14bbd1"
1166
+ dependencies = [
1167
+ "cfg-if",
1168
+ "crunchy",
1169
+ ]
1170
+
1171
+ [[package]]
1172
+ name = "hashbrown"
1173
+ version = "0.12.3"
1174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1175
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
1176
+
1177
+ [[package]]
1178
+ name = "hashbrown"
1179
+ version = "0.15.2"
1180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1181
+ checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
1182
+ dependencies = [
1183
+ "allocator-api2",
1184
+ "equivalent",
1185
+ "foldhash",
1186
+ ]
1187
+
1188
+ [[package]]
1189
+ name = "hashlink"
1190
+ version = "0.10.0"
1191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1192
+ checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1"
1193
+ dependencies = [
1194
+ "hashbrown 0.15.2",
1195
+ ]
1196
+
1197
+ [[package]]
1198
+ name = "heck"
1199
+ version = "0.5.0"
1200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1201
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1202
+
1203
+ [[package]]
1204
+ name = "hermit-abi"
1205
+ version = "0.4.0"
1206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1207
+ checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc"
1208
+
1209
+ [[package]]
1210
+ name = "hermit-abi"
1211
+ version = "0.5.0"
1212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1213
+ checksum = "fbd780fe5cc30f81464441920d82ac8740e2e46b29a6fad543ddd075229ce37e"
1214
+
1215
+ [[package]]
1216
+ name = "hex"
1217
+ version = "0.4.3"
1218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1219
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1220
+
1221
+ [[package]]
1222
+ name = "home"
1223
+ version = "0.5.11"
1224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1225
+ checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
1226
+ dependencies = [
1227
+ "windows-sys 0.59.0",
1228
+ ]
1229
+
1230
+ [[package]]
1231
+ name = "humantime"
1232
+ version = "2.2.0"
1233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1234
+ checksum = "9b112acc8b3adf4b107a8ec20977da0273a8c386765a3ec0229bd500a1443f9f"
1235
+
1236
+ [[package]]
1237
+ name = "iana-time-zone"
1238
+ version = "0.1.62"
1239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1240
+ checksum = "b2fd658b06e56721792c5df4475705b6cda790e9298d19d2f8af083457bcd127"
1241
+ dependencies = [
1242
+ "android_system_properties",
1243
+ "core-foundation-sys",
1244
+ "iana-time-zone-haiku",
1245
+ "js-sys",
1246
+ "log",
1247
+ "wasm-bindgen",
1248
+ "windows-core",
1249
+ ]
1250
+
1251
+ [[package]]
1252
+ name = "iana-time-zone-haiku"
1253
+ version = "0.1.2"
1254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1255
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1256
+ dependencies = [
1257
+ "cc",
1258
+ ]
1259
+
1260
+ [[package]]
1261
+ name = "icu_collections"
1262
+ version = "1.5.0"
1263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1264
+ checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
1265
+ dependencies = [
1266
+ "displaydoc",
1267
+ "yoke",
1268
+ "zerofrom",
1269
+ "zerovec",
1270
+ ]
1271
+
1272
+ [[package]]
1273
+ name = "icu_locid"
1274
+ version = "1.5.0"
1275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1276
+ checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
1277
+ dependencies = [
1278
+ "displaydoc",
1279
+ "litemap",
1280
+ "tinystr",
1281
+ "writeable",
1282
+ "zerovec",
1283
+ ]
1284
+
1285
+ [[package]]
1286
+ name = "icu_locid_transform"
1287
+ version = "1.5.0"
1288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1289
+ checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
1290
+ dependencies = [
1291
+ "displaydoc",
1292
+ "icu_locid",
1293
+ "icu_locid_transform_data",
1294
+ "icu_provider",
1295
+ "tinystr",
1296
+ "zerovec",
1297
+ ]
1298
+
1299
+ [[package]]
1300
+ name = "icu_locid_transform_data"
1301
+ version = "1.5.0"
1302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1303
+ checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e"
1304
+
1305
+ [[package]]
1306
+ name = "icu_normalizer"
1307
+ version = "1.5.0"
1308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1309
+ checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
1310
+ dependencies = [
1311
+ "displaydoc",
1312
+ "icu_collections",
1313
+ "icu_normalizer_data",
1314
+ "icu_properties",
1315
+ "icu_provider",
1316
+ "smallvec",
1317
+ "utf16_iter",
1318
+ "utf8_iter",
1319
+ "write16",
1320
+ "zerovec",
1321
+ ]
1322
+
1323
+ [[package]]
1324
+ name = "icu_normalizer_data"
1325
+ version = "1.5.0"
1326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1327
+ checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516"
1328
+
1329
+ [[package]]
1330
+ name = "icu_properties"
1331
+ version = "1.5.1"
1332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1333
+ checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
1334
+ dependencies = [
1335
+ "displaydoc",
1336
+ "icu_collections",
1337
+ "icu_locid_transform",
1338
+ "icu_properties_data",
1339
+ "icu_provider",
1340
+ "tinystr",
1341
+ "zerovec",
1342
+ ]
1343
+
1344
+ [[package]]
1345
+ name = "icu_properties_data"
1346
+ version = "1.5.0"
1347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1348
+ checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569"
1349
+
1350
+ [[package]]
1351
+ name = "icu_provider"
1352
+ version = "1.5.0"
1353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1354
+ checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
1355
+ dependencies = [
1356
+ "displaydoc",
1357
+ "icu_locid",
1358
+ "icu_provider_macros",
1359
+ "stable_deref_trait",
1360
+ "tinystr",
1361
+ "writeable",
1362
+ "yoke",
1363
+ "zerofrom",
1364
+ "zerovec",
1365
+ ]
1366
+
1367
+ [[package]]
1368
+ name = "icu_provider_macros"
1369
+ version = "1.5.0"
1370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1371
+ checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
1372
+ dependencies = [
1373
+ "proc-macro2",
1374
+ "quote",
1375
+ "syn 2.0.100",
1376
+ ]
1377
+
1378
+ [[package]]
1379
+ name = "ident_case"
1380
+ version = "1.0.1"
1381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1382
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1383
+
1384
+ [[package]]
1385
+ name = "idna"
1386
+ version = "1.0.3"
1387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1388
+ checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
1389
+ dependencies = [
1390
+ "idna_adapter",
1391
+ "smallvec",
1392
+ "utf8_iter",
1393
+ ]
1394
+
1395
+ [[package]]
1396
+ name = "idna_adapter"
1397
+ version = "1.2.0"
1398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1399
+ checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
1400
+ dependencies = [
1401
+ "icu_normalizer",
1402
+ "icu_properties",
1403
+ ]
1404
+
1405
+ [[package]]
1406
+ name = "indexmap"
1407
+ version = "1.9.3"
1408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1409
+ checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
1410
+ dependencies = [
1411
+ "autocfg",
1412
+ "hashbrown 0.12.3",
1413
+ "serde",
1414
+ ]
1415
+
1416
+ [[package]]
1417
+ name = "indexmap"
1418
+ version = "2.8.0"
1419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1420
+ checksum = "3954d50fe15b02142bf25d3b8bdadb634ec3948f103d04ffe3031bc8fe9d7058"
1421
+ dependencies = [
1422
+ "equivalent",
1423
+ "hashbrown 0.15.2",
1424
+ "serde",
1425
+ ]
1426
+
1427
+ [[package]]
1428
+ name = "indoc"
1429
+ version = "2.0.6"
1430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1431
+ checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
1432
+
1433
+ [[package]]
1434
+ name = "inferno"
1435
+ version = "0.11.21"
1436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1437
+ checksum = "232929e1d75fe899576a3d5c7416ad0d88dbfbb3c3d6aa00873a7408a50ddb88"
1438
+ dependencies = [
1439
+ "ahash",
1440
+ "indexmap 2.8.0",
1441
+ "is-terminal",
1442
+ "itoa",
1443
+ "log",
1444
+ "num-format",
1445
+ "once_cell",
1446
+ "quick-xml 0.26.0",
1447
+ "rgb",
1448
+ "str_stack",
1449
+ ]
1450
+
1451
+ [[package]]
1452
+ name = "inotify"
1453
+ version = "0.11.0"
1454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1455
+ checksum = "f37dccff2791ab604f9babef0ba14fbe0be30bd368dc541e2b08d07c8aa908f3"
1456
+ dependencies = [
1457
+ "bitflags 2.9.0",
1458
+ "inotify-sys",
1459
+ "libc",
1460
+ ]
1461
+
1462
+ [[package]]
1463
+ name = "inotify-sys"
1464
+ version = "0.1.5"
1465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1466
+ checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb"
1467
+ dependencies = [
1468
+ "libc",
1469
+ ]
1470
+
1471
+ [[package]]
1472
+ name = "io-uring"
1473
+ version = "0.7.6"
1474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1475
+ checksum = "3c2f96dfbc20c12b9b4f12eef60472d8c29b9c3f29463570dcb47e4a48551168"
1476
+ dependencies = [
1477
+ "bitflags 2.9.0",
1478
+ "cfg-if",
1479
+ "libc",
1480
+ ]
1481
+
1482
+ [[package]]
1483
+ name = "ipnetwork"
1484
+ version = "0.21.1"
1485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1486
+ checksum = "cf370abdafd54d13e54a620e8c3e1145f28e46cc9d704bc6d94414559df41763"
1487
+
1488
+ [[package]]
1489
+ name = "is-terminal"
1490
+ version = "0.4.16"
1491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1492
+ checksum = "e04d7f318608d35d4b61ddd75cbdaee86b023ebe2bd5a66ee0915f0bf93095a9"
1493
+ dependencies = [
1494
+ "hermit-abi 0.5.0",
1495
+ "libc",
1496
+ "windows-sys 0.59.0",
1497
+ ]
1498
+
1499
+ [[package]]
1500
+ name = "is_ci"
1501
+ version = "1.2.0"
1502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1503
+ checksum = "7655c9839580ee829dfacba1d1278c2b7883e50a277ff7541299489d6bdfdc45"
1504
+
1505
+ [[package]]
1506
+ name = "is_executable"
1507
+ version = "1.0.4"
1508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1509
+ checksum = "d4a1b5bad6f9072935961dfbf1cced2f3d129963d091b6f69f007fe04e758ae2"
1510
+ dependencies = [
1511
+ "winapi",
1512
+ ]
1513
+
1514
+ [[package]]
1515
+ name = "is_terminal_polyfill"
1516
+ version = "1.70.1"
1517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1518
+ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
1519
+
1520
+ [[package]]
1521
+ name = "itertools"
1522
+ version = "0.10.5"
1523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1524
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
1525
+ dependencies = [
1526
+ "either",
1527
+ ]
1528
+
1529
+ [[package]]
1530
+ name = "itoa"
1531
+ version = "1.0.15"
1532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1533
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
1534
+
1535
+ [[package]]
1536
+ name = "jiff"
1537
+ version = "0.2.5"
1538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1539
+ checksum = "c102670231191d07d37a35af3eb77f1f0dbf7a71be51a962dcd57ea607be7260"
1540
+ dependencies = [
1541
+ "jiff-static",
1542
+ "log",
1543
+ "portable-atomic",
1544
+ "portable-atomic-util",
1545
+ "serde",
1546
+ ]
1547
+
1548
+ [[package]]
1549
+ name = "jiff-static"
1550
+ version = "0.2.5"
1551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1552
+ checksum = "4cdde31a9d349f1b1f51a0b3714a5940ac022976f4b49485fc04be052b183b4c"
1553
+ dependencies = [
1554
+ "proc-macro2",
1555
+ "quote",
1556
+ "syn 2.0.100",
1557
+ ]
1558
+
1559
+ [[package]]
1560
+ name = "jni"
1561
+ version = "0.21.1"
1562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1563
+ checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
1564
+ dependencies = [
1565
+ "cesu8",
1566
+ "cfg-if",
1567
+ "combine",
1568
+ "jni-sys",
1569
+ "log",
1570
+ "thiserror 1.0.69",
1571
+ "walkdir",
1572
+ "windows-sys 0.45.0",
1573
+ ]
1574
+
1575
+ [[package]]
1576
+ name = "jni-sys"
1577
+ version = "0.3.0"
1578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1579
+ checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
1580
+
1581
+ [[package]]
1582
+ name = "jobserver"
1583
+ version = "0.1.32"
1584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1585
+ checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
1586
+ dependencies = [
1587
+ "libc",
1588
+ ]
1589
+
1590
+ [[package]]
1591
+ name = "js-sys"
1592
+ version = "0.3.77"
1593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1594
+ checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
1595
+ dependencies = [
1596
+ "once_cell",
1597
+ "wasm-bindgen",
1598
+ ]
1599
+
1600
+ [[package]]
1601
+ name = "julian_day_converter"
1602
+ version = "0.4.5"
1603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1604
+ checksum = "f2987f71b89b85c812c8484cbf0c5d7912589e77bfdc66fd3e52f760e7859f16"
1605
+ dependencies = [
1606
+ "chrono",
1607
+ ]
1608
+
1609
+ [[package]]
1610
+ name = "kqueue"
1611
+ version = "1.0.8"
1612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1613
+ checksum = "7447f1ca1b7b563588a205fe93dea8df60fd981423a768bc1c0ded35ed147d0c"
1614
+ dependencies = [
1615
+ "kqueue-sys",
1616
+ "libc",
1617
+ ]
1618
+
1619
+ [[package]]
1620
+ name = "kqueue-sys"
1621
+ version = "1.0.4"
1622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1623
+ checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b"
1624
+ dependencies = [
1625
+ "bitflags 1.3.2",
1626
+ "libc",
1627
+ ]
1628
+
1629
+ [[package]]
1630
+ name = "lazy_static"
1631
+ version = "1.5.0"
1632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1633
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1634
+
1635
+ [[package]]
1636
+ name = "libc"
1637
+ version = "0.2.172"
1638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1639
+ checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
1640
+
1641
+ [[package]]
1642
+ name = "libgit2-sys"
1643
+ version = "0.18.1+1.9.0"
1644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1645
+ checksum = "e1dcb20f84ffcdd825c7a311ae347cce604a6f084a767dec4a4929829645290e"
1646
+ dependencies = [
1647
+ "cc",
1648
+ "libc",
1649
+ "libz-sys",
1650
+ "pkg-config",
1651
+ ]
1652
+
1653
+ [[package]]
1654
+ name = "libloading"
1655
+ version = "0.8.6"
1656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1657
+ checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
1658
+ dependencies = [
1659
+ "cfg-if",
1660
+ "windows-targets 0.52.6",
1661
+ ]
1662
+
1663
+ [[package]]
1664
+ name = "libm"
1665
+ version = "0.2.11"
1666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1667
+ checksum = "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa"
1668
+
1669
+ [[package]]
1670
+ name = "libmimalloc-sys"
1671
+ version = "0.1.42"
1672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1673
+ checksum = "ec9d6fac27761dabcd4ee73571cdb06b7022dc99089acbe5435691edffaac0f4"
1674
+ dependencies = [
1675
+ "cc",
1676
+ "libc",
1677
+ ]
1678
+
1679
+ [[package]]
1680
+ name = "libredox"
1681
+ version = "0.1.3"
1682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1683
+ checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
1684
+ dependencies = [
1685
+ "bitflags 2.9.0",
1686
+ "libc",
1687
+ "redox_syscall",
1688
+ ]
1689
+
1690
+ [[package]]
1691
+ name = "libsqlite3-sys"
1692
+ version = "0.32.0"
1693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1694
+ checksum = "fbb8270bb4060bd76c6e96f20c52d80620f1d82a3470885694e41e0f81ef6fe7"
1695
+ dependencies = [
1696
+ "cc",
1697
+ "pkg-config",
1698
+ "vcpkg",
1699
+ ]
1700
+
1701
+ [[package]]
1702
+ name = "libz-sys"
1703
+ version = "1.1.22"
1704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1705
+ checksum = "8b70e7a7df205e92a1a4cd9aaae7898dac0aa555503cc0a649494d0d60e7651d"
1706
+ dependencies = [
1707
+ "cc",
1708
+ "libc",
1709
+ "pkg-config",
1710
+ "vcpkg",
1711
+ ]
1712
+
1713
+ [[package]]
1714
+ name = "limbo-go"
1715
+ version = "0.1.0"
1716
+ dependencies = [
1717
+ "turso_core",
1718
+ ]
1719
+
1720
+ [[package]]
1721
+ name = "limbo-java"
1722
+ version = "0.1.0"
1723
+ dependencies = [
1724
+ "jni",
1725
+ "thiserror 2.0.12",
1726
+ "turso_core",
1727
+ ]
1728
+
1729
+ [[package]]
1730
+ name = "limbo-wasm"
1731
+ version = "0.1.0"
1732
+ dependencies = [
1733
+ "console_error_panic_hook",
1734
+ "getrandom 0.2.15",
1735
+ "js-sys",
1736
+ "turso_core",
1737
+ "wasm-bindgen",
1738
+ "wasm-bindgen-futures",
1739
+ "web-sys",
1740
+ ]
1741
+
1742
+ [[package]]
1743
+ name = "limbo_completion"
1744
+ version = "0.1.0"
1745
+ dependencies = [
1746
+ "mimalloc",
1747
+ "turso_ext",
1748
+ ]
1749
+
1750
+ [[package]]
1751
+ name = "limbo_crypto"
1752
+ version = "0.1.0"
1753
+ dependencies = [
1754
+ "blake3",
1755
+ "data-encoding",
1756
+ "md5",
1757
+ "mimalloc",
1758
+ "ring",
1759
+ "turso_ext",
1760
+ "urlencoding",
1761
+ ]
1762
+
1763
+ [[package]]
1764
+ name = "limbo_csv"
1765
+ version = "0.1.0"
1766
+ dependencies = [
1767
+ "csv",
1768
+ "mimalloc",
1769
+ "tempfile",
1770
+ "turso_ext",
1771
+ ]
1772
+
1773
+ [[package]]
1774
+ name = "limbo_ipaddr"
1775
+ version = "0.1.0"
1776
+ dependencies = [
1777
+ "ipnetwork",
1778
+ "mimalloc",
1779
+ "turso_ext",
1780
+ ]
1781
+
1782
+ [[package]]
1783
+ name = "limbo_percentile"
1784
+ version = "0.1.0"
1785
+ dependencies = [
1786
+ "mimalloc",
1787
+ "turso_ext",
1788
+ ]
1789
+
1790
+ [[package]]
1791
+ name = "limbo_regexp"
1792
+ version = "0.1.0"
1793
+ dependencies = [
1794
+ "mimalloc",
1795
+ "regex",
1796
+ "turso_ext",
1797
+ ]
1798
+
1799
+ [[package]]
1800
+ name = "limbo_sim"
1801
+ version = "0.1.0"
1802
+ dependencies = [
1803
+ "anarchist-readable-name-generator-lib",
1804
+ "anyhow",
1805
+ "chrono",
1806
+ "clap",
1807
+ "dirs 6.0.0",
1808
+ "env_logger 0.10.2",
1809
+ "hex",
1810
+ "log",
1811
+ "notify",
1812
+ "rand 0.8.5",
1813
+ "rand_chacha 0.3.1",
1814
+ "regex",
1815
+ "regex-syntax 0.8.5",
1816
+ "rusqlite",
1817
+ "serde",
1818
+ "serde_json",
1819
+ "tracing",
1820
+ "tracing-subscriber",
1821
+ "turso_core",
1822
+ "turso_sqlite3_parser",
1823
+ ]
1824
+
1825
+ [[package]]
1826
+ name = "limbo_sqlite3"
1827
+ version = "0.1.0"
1828
+ dependencies = [
1829
+ "env_logger 0.11.7",
1830
+ "libc",
1831
+ "tempfile",
1832
+ "tracing",
1833
+ "tracing-appender",
1834
+ "tracing-subscriber",
1835
+ "turso_core",
1836
+ ]
1837
+
1838
+ [[package]]
1839
+ name = "limbo_sqlite_test_ext"
1840
+ version = "0.1.0"
1841
+ dependencies = [
1842
+ "cc",
1843
+ ]
1844
+
1845
+ [[package]]
1846
+ name = "limbo_stress"
1847
+ version = "0.1.0"
1848
+ dependencies = [
1849
+ "anarchist-readable-name-generator-lib",
1850
+ "antithesis_sdk",
1851
+ "clap",
1852
+ "hex",
1853
+ "tempfile",
1854
+ "tokio",
1855
+ "tracing",
1856
+ "tracing-appender",
1857
+ "tracing-subscriber",
1858
+ "turso",
1859
+ ]
1860
+
1861
+ [[package]]
1862
+ name = "linked-hash-map"
1863
+ version = "0.5.6"
1864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1865
+ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
1866
+
1867
+ [[package]]
1868
+ name = "linkme"
1869
+ version = "0.3.32"
1870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1871
+ checksum = "22d227772b5999ddc0690e733f734f95ca05387e329c4084fe65678c51198ffe"
1872
+ dependencies = [
1873
+ "linkme-impl",
1874
+ ]
1875
+
1876
+ [[package]]
1877
+ name = "linkme-impl"
1878
+ version = "0.3.32"
1879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1880
+ checksum = "71a98813fa0073a317ed6a8055dcd4722a49d9b862af828ee68449adb799b6be"
1881
+ dependencies = [
1882
+ "proc-macro2",
1883
+ "quote",
1884
+ "syn 2.0.100",
1885
+ ]
1886
+
1887
+ [[package]]
1888
+ name = "linux-raw-sys"
1889
+ version = "0.4.15"
1890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1891
+ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
1892
+
1893
+ [[package]]
1894
+ name = "linux-raw-sys"
1895
+ version = "0.9.3"
1896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1897
+ checksum = "fe7db12097d22ec582439daf8618b8fdd1a7bef6270e9af3b1ebcd30893cf413"
1898
+
1899
+ [[package]]
1900
+ name = "litemap"
1901
+ version = "0.7.5"
1902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1903
+ checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856"
1904
+
1905
+ [[package]]
1906
+ name = "lock_api"
1907
+ version = "0.4.12"
1908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1909
+ checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
1910
+ dependencies = [
1911
+ "autocfg",
1912
+ "scopeguard",
1913
+ ]
1914
+
1915
+ [[package]]
1916
+ name = "log"
1917
+ version = "0.4.27"
1918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1919
+ checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
1920
+
1921
+ [[package]]
1922
+ name = "lru"
1923
+ version = "0.14.0"
1924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1925
+ checksum = "9f8cc7106155f10bdf99a6f379688f543ad6596a415375b36a59a054ceda1198"
1926
+ dependencies = [
1927
+ "hashbrown 0.15.2",
1928
+ ]
1929
+
1930
+ [[package]]
1931
+ name = "matchers"
1932
+ version = "0.1.0"
1933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1934
+ checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
1935
+ dependencies = [
1936
+ "regex-automata 0.1.10",
1937
+ ]
1938
+
1939
+ [[package]]
1940
+ name = "md5"
1941
+ version = "0.7.0"
1942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1943
+ checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771"
1944
+
1945
+ [[package]]
1946
+ name = "memchr"
1947
+ version = "2.7.4"
1948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1949
+ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
1950
+
1951
+ [[package]]
1952
+ name = "memmap2"
1953
+ version = "0.9.5"
1954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1955
+ checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f"
1956
+ dependencies = [
1957
+ "libc",
1958
+ ]
1959
+
1960
+ [[package]]
1961
+ name = "memoffset"
1962
+ version = "0.9.1"
1963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1964
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1965
+ dependencies = [
1966
+ "autocfg",
1967
+ ]
1968
+
1969
+ [[package]]
1970
+ name = "miette"
1971
+ version = "7.6.0"
1972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1973
+ checksum = "5f98efec8807c63c752b5bd61f862c165c115b0a35685bdcfd9238c7aeb592b7"
1974
+ dependencies = [
1975
+ "backtrace",
1976
+ "backtrace-ext",
1977
+ "cfg-if",
1978
+ "miette-derive",
1979
+ "owo-colors",
1980
+ "supports-color",
1981
+ "supports-hyperlinks",
1982
+ "supports-unicode",
1983
+ "terminal_size",
1984
+ "textwrap",
1985
+ "unicode-width 0.1.14",
1986
+ ]
1987
+
1988
+ [[package]]
1989
+ name = "miette-derive"
1990
+ version = "7.6.0"
1991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1992
+ checksum = "db5b29714e950dbb20d5e6f74f9dcec4edbcc1067bb7f8ed198c097b8c1a818b"
1993
+ dependencies = [
1994
+ "proc-macro2",
1995
+ "quote",
1996
+ "syn 2.0.100",
1997
+ ]
1998
+
1999
+ [[package]]
2000
+ name = "mimalloc"
2001
+ version = "0.1.46"
2002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2003
+ checksum = "995942f432bbb4822a7e9c3faa87a695185b0d09273ba85f097b54f4e458f2af"
2004
+ dependencies = [
2005
+ "libmimalloc-sys",
2006
+ ]
2007
+
2008
+ [[package]]
2009
+ name = "miniz_oxide"
2010
+ version = "0.8.5"
2011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2012
+ checksum = "8e3e04debbb59698c15bacbb6d93584a8c0ca9cc3213cb423d31f760d8843ce5"
2013
+ dependencies = [
2014
+ "adler2",
2015
+ ]
2016
+
2017
+ [[package]]
2018
+ name = "mio"
2019
+ version = "1.0.3"
2020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2021
+ checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
2022
+ dependencies = [
2023
+ "libc",
2024
+ "log",
2025
+ "wasi 0.11.0+wasi-snapshot-preview1",
2026
+ "windows-sys 0.52.0",
2027
+ ]
2028
+
2029
+ [[package]]
2030
+ name = "napi"
2031
+ version = "2.16.17"
2032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2033
+ checksum = "55740c4ae1d8696773c78fdafd5d0e5fe9bc9f1b071c7ba493ba5c413a9184f3"
2034
+ dependencies = [
2035
+ "bitflags 2.9.0",
2036
+ "ctor",
2037
+ "napi-derive",
2038
+ "napi-sys",
2039
+ "once_cell",
2040
+ ]
2041
+
2042
+ [[package]]
2043
+ name = "napi-build"
2044
+ version = "2.2.0"
2045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2046
+ checksum = "03acbfa4f156a32188bfa09b86dc11a431b5725253fc1fc6f6df5bed273382c4"
2047
+
2048
+ [[package]]
2049
+ name = "napi-derive"
2050
+ version = "2.16.13"
2051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2052
+ checksum = "7cbe2585d8ac223f7d34f13701434b9d5f4eb9c332cccce8dee57ea18ab8ab0c"
2053
+ dependencies = [
2054
+ "cfg-if",
2055
+ "convert_case",
2056
+ "napi-derive-backend",
2057
+ "proc-macro2",
2058
+ "quote",
2059
+ "syn 2.0.100",
2060
+ ]
2061
+
2062
+ [[package]]
2063
+ name = "napi-derive-backend"
2064
+ version = "1.0.75"
2065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2066
+ checksum = "1639aaa9eeb76e91c6ae66da8ce3e89e921cd3885e99ec85f4abacae72fc91bf"
2067
+ dependencies = [
2068
+ "convert_case",
2069
+ "once_cell",
2070
+ "proc-macro2",
2071
+ "quote",
2072
+ "syn 2.0.100",
2073
+ ]
2074
+
2075
+ [[package]]
2076
+ name = "napi-sys"
2077
+ version = "2.4.0"
2078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2079
+ checksum = "427802e8ec3a734331fec1035594a210ce1ff4dc5bc1950530920ab717964ea3"
2080
+ dependencies = [
2081
+ "libloading",
2082
+ ]
2083
+
2084
+ [[package]]
2085
+ name = "nibble_vec"
2086
+ version = "0.1.0"
2087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2088
+ checksum = "77a5d83df9f36fe23f0c3648c6bbb8b0298bb5f1939c8f2704431371f4b84d43"
2089
+ dependencies = [
2090
+ "smallvec",
2091
+ ]
2092
+
2093
+ [[package]]
2094
+ name = "nix"
2095
+ version = "0.26.4"
2096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2097
+ checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b"
2098
+ dependencies = [
2099
+ "bitflags 1.3.2",
2100
+ "cfg-if",
2101
+ "libc",
2102
+ ]
2103
+
2104
+ [[package]]
2105
+ name = "nix"
2106
+ version = "0.27.1"
2107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2108
+ checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053"
2109
+ dependencies = [
2110
+ "bitflags 2.9.0",
2111
+ "cfg-if",
2112
+ "libc",
2113
+ ]
2114
+
2115
+ [[package]]
2116
+ name = "nix"
2117
+ version = "0.29.0"
2118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2119
+ checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46"
2120
+ dependencies = [
2121
+ "bitflags 2.9.0",
2122
+ "cfg-if",
2123
+ "cfg_aliases",
2124
+ "libc",
2125
+ ]
2126
+
2127
+ [[package]]
2128
+ name = "notify"
2129
+ version = "8.0.0"
2130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2131
+ checksum = "2fee8403b3d66ac7b26aee6e40a897d85dc5ce26f44da36b8b73e987cc52e943"
2132
+ dependencies = [
2133
+ "bitflags 2.9.0",
2134
+ "filetime",
2135
+ "fsevent-sys",
2136
+ "inotify",
2137
+ "kqueue",
2138
+ "libc",
2139
+ "log",
2140
+ "mio",
2141
+ "notify-types",
2142
+ "walkdir",
2143
+ "windows-sys 0.59.0",
2144
+ ]
2145
+
2146
+ [[package]]
2147
+ name = "notify-types"
2148
+ version = "2.0.0"
2149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2150
+ checksum = "5e0826a989adedc2a244799e823aece04662b66609d96af8dff7ac6df9a8925d"
2151
+
2152
+ [[package]]
2153
+ name = "nu-ansi-term"
2154
+ version = "0.46.0"
2155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2156
+ checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
2157
+ dependencies = [
2158
+ "overload",
2159
+ "winapi",
2160
+ ]
2161
+
2162
+ [[package]]
2163
+ name = "nu-ansi-term"
2164
+ version = "0.50.1"
2165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2166
+ checksum = "d4a28e057d01f97e61255210fcff094d74ed0466038633e95017f5beb68e4399"
2167
+ dependencies = [
2168
+ "serde",
2169
+ "windows-sys 0.52.0",
2170
+ ]
2171
+
2172
+ [[package]]
2173
+ name = "num-conv"
2174
+ version = "0.1.0"
2175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2176
+ checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
2177
+
2178
+ [[package]]
2179
+ name = "num-format"
2180
+ version = "0.4.4"
2181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2182
+ checksum = "a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3"
2183
+ dependencies = [
2184
+ "arrayvec",
2185
+ "itoa",
2186
+ ]
2187
+
2188
+ [[package]]
2189
+ name = "num-traits"
2190
+ version = "0.2.19"
2191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2192
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
2193
+ dependencies = [
2194
+ "autocfg",
2195
+ ]
2196
+
2197
+ [[package]]
2198
+ name = "object"
2199
+ version = "0.36.7"
2200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2201
+ checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
2202
+ dependencies = [
2203
+ "memchr",
2204
+ ]
2205
+
2206
+ [[package]]
2207
+ name = "once_cell"
2208
+ version = "1.21.3"
2209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2210
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
2211
+
2212
+ [[package]]
2213
+ name = "onig"
2214
+ version = "6.5.1"
2215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2216
+ checksum = "336b9c63443aceef14bea841b899035ae3abe89b7c486aaf4c5bd8aafedac3f0"
2217
+ dependencies = [
2218
+ "bitflags 2.9.0",
2219
+ "libc",
2220
+ "once_cell",
2221
+ "onig_sys",
2222
+ ]
2223
+
2224
+ [[package]]
2225
+ name = "onig_sys"
2226
+ version = "69.9.1"
2227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2228
+ checksum = "c7f86c6eef3d6df15f23bcfb6af487cbd2fed4e5581d58d5bf1f5f8b7f6727dc"
2229
+ dependencies = [
2230
+ "cc",
2231
+ "pkg-config",
2232
+ ]
2233
+
2234
+ [[package]]
2235
+ name = "oorandom"
2236
+ version = "11.1.5"
2237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2238
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
2239
+
2240
+ [[package]]
2241
+ name = "option-ext"
2242
+ version = "0.2.0"
2243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2244
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
2245
+
2246
+ [[package]]
2247
+ name = "overload"
2248
+ version = "0.1.1"
2249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2250
+ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
2251
+
2252
+ [[package]]
2253
+ name = "owo-colors"
2254
+ version = "4.2.0"
2255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2256
+ checksum = "1036865bb9422d3300cf723f657c2851d0e9ab12567854b1f4eba3d77decf564"
2257
+
2258
+ [[package]]
2259
+ name = "parking_lot"
2260
+ version = "0.12.3"
2261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2262
+ checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
2263
+ dependencies = [
2264
+ "lock_api",
2265
+ "parking_lot_core",
2266
+ ]
2267
+
2268
+ [[package]]
2269
+ name = "parking_lot_core"
2270
+ version = "0.9.10"
2271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2272
+ checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
2273
+ dependencies = [
2274
+ "cfg-if",
2275
+ "libc",
2276
+ "redox_syscall",
2277
+ "smallvec",
2278
+ "windows-targets 0.52.6",
2279
+ ]
2280
+
2281
+ [[package]]
2282
+ name = "paste"
2283
+ version = "1.0.15"
2284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2285
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
2286
+
2287
+ [[package]]
2288
+ name = "percent-encoding"
2289
+ version = "2.3.1"
2290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2291
+ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
2292
+
2293
+ [[package]]
2294
+ name = "phf"
2295
+ version = "0.11.3"
2296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2297
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
2298
+ dependencies = [
2299
+ "phf_shared",
2300
+ ]
2301
+
2302
+ [[package]]
2303
+ name = "phf_codegen"
2304
+ version = "0.11.3"
2305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2306
+ checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
2307
+ dependencies = [
2308
+ "phf_generator",
2309
+ "phf_shared",
2310
+ ]
2311
+
2312
+ [[package]]
2313
+ name = "phf_generator"
2314
+ version = "0.11.3"
2315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2316
+ checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
2317
+ dependencies = [
2318
+ "phf_shared",
2319
+ "rand 0.8.5",
2320
+ ]
2321
+
2322
+ [[package]]
2323
+ name = "phf_shared"
2324
+ version = "0.11.3"
2325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2326
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
2327
+ dependencies = [
2328
+ "siphasher",
2329
+ "uncased",
2330
+ ]
2331
+
2332
+ [[package]]
2333
+ name = "pin-project-lite"
2334
+ version = "0.2.16"
2335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2336
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
2337
+
2338
+ [[package]]
2339
+ name = "pin-utils"
2340
+ version = "0.1.0"
2341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2342
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2343
+
2344
+ [[package]]
2345
+ name = "pkg-config"
2346
+ version = "0.3.32"
2347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2348
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
2349
+
2350
+ [[package]]
2351
+ name = "plist"
2352
+ version = "1.7.1"
2353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2354
+ checksum = "eac26e981c03a6e53e0aee43c113e3202f5581d5360dae7bd2c70e800dd0451d"
2355
+ dependencies = [
2356
+ "base64",
2357
+ "indexmap 2.8.0",
2358
+ "quick-xml 0.32.0",
2359
+ "serde",
2360
+ "time",
2361
+ ]
2362
+
2363
+ [[package]]
2364
+ name = "plotters"
2365
+ version = "0.3.7"
2366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2367
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
2368
+ dependencies = [
2369
+ "num-traits",
2370
+ "plotters-backend",
2371
+ "plotters-svg",
2372
+ "wasm-bindgen",
2373
+ "web-sys",
2374
+ ]
2375
+
2376
+ [[package]]
2377
+ name = "plotters-backend"
2378
+ version = "0.3.7"
2379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2380
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
2381
+
2382
+ [[package]]
2383
+ name = "plotters-svg"
2384
+ version = "0.3.7"
2385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2386
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
2387
+ dependencies = [
2388
+ "plotters-backend",
2389
+ ]
2390
+
2391
+ [[package]]
2392
+ name = "polling"
2393
+ version = "3.7.4"
2394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2395
+ checksum = "a604568c3202727d1507653cb121dbd627a58684eb09a820fd746bee38b4442f"
2396
+ dependencies = [
2397
+ "cfg-if",
2398
+ "concurrent-queue",
2399
+ "hermit-abi 0.4.0",
2400
+ "pin-project-lite",
2401
+ "rustix 0.38.44",
2402
+ "tracing",
2403
+ "windows-sys 0.59.0",
2404
+ ]
2405
+
2406
+ [[package]]
2407
+ name = "portable-atomic"
2408
+ version = "1.11.0"
2409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2410
+ checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
2411
+
2412
+ [[package]]
2413
+ name = "portable-atomic-util"
2414
+ version = "0.2.4"
2415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2416
+ checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
2417
+ dependencies = [
2418
+ "portable-atomic",
2419
+ ]
2420
+
2421
+ [[package]]
2422
+ name = "powerfmt"
2423
+ version = "0.2.0"
2424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2425
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
2426
+
2427
+ [[package]]
2428
+ name = "pprof"
2429
+ version = "0.14.0"
2430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2431
+ checksum = "ebbe2f8898beba44815fdc9e5a4ae9c929e21c5dc29b0c774a15555f7f58d6d0"
2432
+ dependencies = [
2433
+ "aligned-vec",
2434
+ "backtrace",
2435
+ "cfg-if",
2436
+ "criterion",
2437
+ "findshlibs",
2438
+ "inferno",
2439
+ "libc",
2440
+ "log",
2441
+ "nix 0.26.4",
2442
+ "once_cell",
2443
+ "parking_lot",
2444
+ "smallvec",
2445
+ "symbolic-demangle",
2446
+ "tempfile",
2447
+ "thiserror 1.0.69",
2448
+ ]
2449
+
2450
+ [[package]]
2451
+ name = "ppv-lite86"
2452
+ version = "0.2.21"
2453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2454
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2455
+ dependencies = [
2456
+ "zerocopy 0.8.24",
2457
+ ]
2458
+
2459
+ [[package]]
2460
+ name = "predicates"
2461
+ version = "3.1.3"
2462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2463
+ checksum = "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573"
2464
+ dependencies = [
2465
+ "anstyle",
2466
+ "difflib",
2467
+ "predicates-core",
2468
+ ]
2469
+
2470
+ [[package]]
2471
+ name = "predicates-core"
2472
+ version = "1.0.9"
2473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2474
+ checksum = "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa"
2475
+
2476
+ [[package]]
2477
+ name = "predicates-tree"
2478
+ version = "1.0.12"
2479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2480
+ checksum = "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c"
2481
+ dependencies = [
2482
+ "predicates-core",
2483
+ "termtree",
2484
+ ]
2485
+
2486
+ [[package]]
2487
+ name = "proc-macro-error-attr2"
2488
+ version = "2.0.0"
2489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2490
+ checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5"
2491
+ dependencies = [
2492
+ "proc-macro2",
2493
+ "quote",
2494
+ ]
2495
+
2496
+ [[package]]
2497
+ name = "proc-macro-error2"
2498
+ version = "2.0.1"
2499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2500
+ checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
2501
+ dependencies = [
2502
+ "proc-macro-error-attr2",
2503
+ "proc-macro2",
2504
+ "quote",
2505
+ "syn 2.0.100",
2506
+ ]
2507
+
2508
+ [[package]]
2509
+ name = "proc-macro2"
2510
+ version = "1.0.94"
2511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2512
+ checksum = "a31971752e70b8b2686d7e46ec17fb38dad4051d94024c88df49b667caea9c84"
2513
+ dependencies = [
2514
+ "unicode-ident",
2515
+ ]
2516
+
2517
+ [[package]]
2518
+ name = "py-turso"
2519
+ version = "0.1.0"
2520
+ dependencies = [
2521
+ "anyhow",
2522
+ "pyo3",
2523
+ "pyo3-build-config",
2524
+ "turso_core",
2525
+ "version_check",
2526
+ ]
2527
+
2528
+ [[package]]
2529
+ name = "pyo3"
2530
+ version = "0.24.1"
2531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2532
+ checksum = "17da310086b068fbdcefbba30aeb3721d5bb9af8db4987d6735b2183ca567229"
2533
+ dependencies = [
2534
+ "anyhow",
2535
+ "cfg-if",
2536
+ "indoc",
2537
+ "libc",
2538
+ "memoffset",
2539
+ "once_cell",
2540
+ "portable-atomic",
2541
+ "pyo3-build-config",
2542
+ "pyo3-ffi",
2543
+ "pyo3-macros",
2544
+ "unindent",
2545
+ ]
2546
+
2547
+ [[package]]
2548
+ name = "pyo3-build-config"
2549
+ version = "0.24.1"
2550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2551
+ checksum = "e27165889bd793000a098bb966adc4300c312497ea25cf7a690a9f0ac5aa5fc1"
2552
+ dependencies = [
2553
+ "once_cell",
2554
+ "target-lexicon",
2555
+ ]
2556
+
2557
+ [[package]]
2558
+ name = "pyo3-ffi"
2559
+ version = "0.24.1"
2560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2561
+ checksum = "05280526e1dbf6b420062f3ef228b78c0c54ba94e157f5cb724a609d0f2faabc"
2562
+ dependencies = [
2563
+ "libc",
2564
+ "pyo3-build-config",
2565
+ ]
2566
+
2567
+ [[package]]
2568
+ name = "pyo3-macros"
2569
+ version = "0.24.1"
2570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2571
+ checksum = "5c3ce5686aa4d3f63359a5100c62a127c9f15e8398e5fdeb5deef1fed5cd5f44"
2572
+ dependencies = [
2573
+ "proc-macro2",
2574
+ "pyo3-macros-backend",
2575
+ "quote",
2576
+ "syn 2.0.100",
2577
+ ]
2578
+
2579
+ [[package]]
2580
+ name = "pyo3-macros-backend"
2581
+ version = "0.24.1"
2582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2583
+ checksum = "f4cf6faa0cbfb0ed08e89beb8103ae9724eb4750e3a78084ba4017cbe94f3855"
2584
+ dependencies = [
2585
+ "heck",
2586
+ "proc-macro2",
2587
+ "pyo3-build-config",
2588
+ "quote",
2589
+ "syn 2.0.100",
2590
+ ]
2591
+
2592
+ [[package]]
2593
+ name = "quick-xml"
2594
+ version = "0.26.0"
2595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2596
+ checksum = "7f50b1c63b38611e7d4d7f68b82d3ad0cc71a2ad2e7f61fc10f1328d917c93cd"
2597
+ dependencies = [
2598
+ "memchr",
2599
+ ]
2600
+
2601
+ [[package]]
2602
+ name = "quick-xml"
2603
+ version = "0.32.0"
2604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2605
+ checksum = "1d3a6e5838b60e0e8fa7a43f22ade549a37d61f8bdbe636d0d7816191de969c2"
2606
+ dependencies = [
2607
+ "memchr",
2608
+ ]
2609
+
2610
+ [[package]]
2611
+ name = "quickcheck"
2612
+ version = "1.0.3"
2613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2614
+ checksum = "588f6378e4dd99458b60ec275b4477add41ce4fa9f64dcba6f15adccb19b50d6"
2615
+ dependencies = [
2616
+ "rand 0.8.5",
2617
+ ]
2618
+
2619
+ [[package]]
2620
+ name = "quickcheck_macros"
2621
+ version = "1.0.0"
2622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2623
+ checksum = "b22a693222d716a9587786f37ac3f6b4faedb5b80c23914e7303ff5a1d8016e9"
2624
+ dependencies = [
2625
+ "proc-macro2",
2626
+ "quote",
2627
+ "syn 1.0.109",
2628
+ ]
2629
+
2630
+ [[package]]
2631
+ name = "quote"
2632
+ version = "1.0.40"
2633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2634
+ checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
2635
+ dependencies = [
2636
+ "proc-macro2",
2637
+ ]
2638
+
2639
+ [[package]]
2640
+ name = "r-efi"
2641
+ version = "5.2.0"
2642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2643
+ checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
2644
+
2645
+ [[package]]
2646
+ name = "radix_trie"
2647
+ version = "0.2.1"
2648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2649
+ checksum = "c069c179fcdc6a2fe24d8d18305cf085fdbd4f922c041943e203685d6a1c58fd"
2650
+ dependencies = [
2651
+ "endian-type",
2652
+ "nibble_vec",
2653
+ ]
2654
+
2655
+ [[package]]
2656
+ name = "rand"
2657
+ version = "0.8.5"
2658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2659
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2660
+ dependencies = [
2661
+ "libc",
2662
+ "rand_chacha 0.3.1",
2663
+ "rand_core 0.6.4",
2664
+ ]
2665
+
2666
+ [[package]]
2667
+ name = "rand"
2668
+ version = "0.9.0"
2669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2670
+ checksum = "3779b94aeb87e8bd4e834cee3650289ee9e0d5677f976ecdb6d219e5f4f6cd94"
2671
+ dependencies = [
2672
+ "rand_chacha 0.9.0",
2673
+ "rand_core 0.9.3",
2674
+ "zerocopy 0.8.24",
2675
+ ]
2676
+
2677
+ [[package]]
2678
+ name = "rand_chacha"
2679
+ version = "0.3.1"
2680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2681
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2682
+ dependencies = [
2683
+ "ppv-lite86",
2684
+ "rand_core 0.6.4",
2685
+ ]
2686
+
2687
+ [[package]]
2688
+ name = "rand_chacha"
2689
+ version = "0.9.0"
2690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2691
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2692
+ dependencies = [
2693
+ "ppv-lite86",
2694
+ "rand_core 0.9.3",
2695
+ ]
2696
+
2697
+ [[package]]
2698
+ name = "rand_core"
2699
+ version = "0.6.4"
2700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2701
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2702
+ dependencies = [
2703
+ "getrandom 0.2.15",
2704
+ ]
2705
+
2706
+ [[package]]
2707
+ name = "rand_core"
2708
+ version = "0.9.3"
2709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2710
+ checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
2711
+ dependencies = [
2712
+ "getrandom 0.3.2",
2713
+ ]
2714
+
2715
+ [[package]]
2716
+ name = "rayon"
2717
+ version = "1.10.0"
2718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2719
+ checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
2720
+ dependencies = [
2721
+ "either",
2722
+ "rayon-core",
2723
+ ]
2724
+
2725
+ [[package]]
2726
+ name = "rayon-core"
2727
+ version = "1.12.1"
2728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2729
+ checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
2730
+ dependencies = [
2731
+ "crossbeam-deque",
2732
+ "crossbeam-utils",
2733
+ ]
2734
+
2735
+ [[package]]
2736
+ name = "redox_syscall"
2737
+ version = "0.5.10"
2738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2739
+ checksum = "0b8c0c260b63a8219631167be35e6a988e9554dbd323f8bd08439c8ed1302bd1"
2740
+ dependencies = [
2741
+ "bitflags 2.9.0",
2742
+ ]
2743
+
2744
+ [[package]]
2745
+ name = "redox_users"
2746
+ version = "0.4.6"
2747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2748
+ checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
2749
+ dependencies = [
2750
+ "getrandom 0.2.15",
2751
+ "libredox",
2752
+ "thiserror 1.0.69",
2753
+ ]
2754
+
2755
+ [[package]]
2756
+ name = "redox_users"
2757
+ version = "0.5.0"
2758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2759
+ checksum = "dd6f9d3d47bdd2ad6945c5015a226ec6155d0bcdfd8f7cd29f86b71f8de99d2b"
2760
+ dependencies = [
2761
+ "getrandom 0.2.15",
2762
+ "libredox",
2763
+ "thiserror 2.0.12",
2764
+ ]
2765
+
2766
+ [[package]]
2767
+ name = "regex"
2768
+ version = "1.11.1"
2769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2770
+ checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
2771
+ dependencies = [
2772
+ "aho-corasick",
2773
+ "memchr",
2774
+ "regex-automata 0.4.9",
2775
+ "regex-syntax 0.8.5",
2776
+ ]
2777
+
2778
+ [[package]]
2779
+ name = "regex-automata"
2780
+ version = "0.1.10"
2781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2782
+ checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
2783
+ dependencies = [
2784
+ "regex-syntax 0.6.29",
2785
+ ]
2786
+
2787
+ [[package]]
2788
+ name = "regex-automata"
2789
+ version = "0.4.9"
2790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2791
+ checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
2792
+ dependencies = [
2793
+ "aho-corasick",
2794
+ "memchr",
2795
+ "regex-syntax 0.8.5",
2796
+ ]
2797
+
2798
+ [[package]]
2799
+ name = "regex-syntax"
2800
+ version = "0.6.29"
2801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2802
+ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
2803
+
2804
+ [[package]]
2805
+ name = "regex-syntax"
2806
+ version = "0.8.5"
2807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2808
+ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
2809
+
2810
+ [[package]]
2811
+ name = "relative-path"
2812
+ version = "1.9.3"
2813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2814
+ checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2"
2815
+
2816
+ [[package]]
2817
+ name = "rexpect"
2818
+ version = "0.6.0"
2819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2820
+ checksum = "c020234fb542618dc3e3d43724e9d93f87e1db74040a76a8c4e830220fb9b20d"
2821
+ dependencies = [
2822
+ "comma",
2823
+ "nix 0.27.1",
2824
+ "regex",
2825
+ "tempfile",
2826
+ "thiserror 1.0.69",
2827
+ ]
2828
+
2829
+ [[package]]
2830
+ name = "rgb"
2831
+ version = "0.8.50"
2832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2833
+ checksum = "57397d16646700483b67d2dd6511d79318f9d057fdbd21a4066aeac8b41d310a"
2834
+ dependencies = [
2835
+ "bytemuck",
2836
+ ]
2837
+
2838
+ [[package]]
2839
+ name = "ring"
2840
+ version = "0.17.14"
2841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2842
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2843
+ dependencies = [
2844
+ "cc",
2845
+ "cfg-if",
2846
+ "getrandom 0.2.15",
2847
+ "libc",
2848
+ "untrusted",
2849
+ "windows-sys 0.52.0",
2850
+ ]
2851
+
2852
+ [[package]]
2853
+ name = "rstest"
2854
+ version = "0.18.2"
2855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2856
+ checksum = "97eeab2f3c0a199bc4be135c36c924b6590b88c377d416494288c14f2db30199"
2857
+ dependencies = [
2858
+ "futures",
2859
+ "futures-timer",
2860
+ "rstest_macros",
2861
+ "rustc_version",
2862
+ ]
2863
+
2864
+ [[package]]
2865
+ name = "rstest_macros"
2866
+ version = "0.18.2"
2867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2868
+ checksum = "d428f8247852f894ee1be110b375111b586d4fa431f6c46e64ba5a0dcccbe605"
2869
+ dependencies = [
2870
+ "cfg-if",
2871
+ "glob",
2872
+ "proc-macro2",
2873
+ "quote",
2874
+ "regex",
2875
+ "relative-path",
2876
+ "rustc_version",
2877
+ "syn 2.0.100",
2878
+ "unicode-ident",
2879
+ ]
2880
+
2881
+ [[package]]
2882
+ name = "rusqlite"
2883
+ version = "0.34.0"
2884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2885
+ checksum = "37e34486da88d8e051c7c0e23c3f15fd806ea8546260aa2fec247e97242ec143"
2886
+ dependencies = [
2887
+ "bitflags 2.9.0",
2888
+ "fallible-iterator",
2889
+ "fallible-streaming-iterator",
2890
+ "hashlink",
2891
+ "libsqlite3-sys",
2892
+ "smallvec",
2893
+ ]
2894
+
2895
+ [[package]]
2896
+ name = "rustc-demangle"
2897
+ version = "0.1.24"
2898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2899
+ checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
2900
+
2901
+ [[package]]
2902
+ name = "rustc_version"
2903
+ version = "0.4.1"
2904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2905
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
2906
+ dependencies = [
2907
+ "semver",
2908
+ ]
2909
+
2910
+ [[package]]
2911
+ name = "rustc_version_runtime"
2912
+ version = "0.3.0"
2913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2914
+ checksum = "2dd18cd2bae1820af0b6ad5e54f4a51d0f3fcc53b05f845675074efcc7af071d"
2915
+ dependencies = [
2916
+ "rustc_version",
2917
+ "semver",
2918
+ ]
2919
+
2920
+ [[package]]
2921
+ name = "rustix"
2922
+ version = "0.38.44"
2923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2924
+ checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
2925
+ dependencies = [
2926
+ "bitflags 2.9.0",
2927
+ "errno",
2928
+ "libc",
2929
+ "linux-raw-sys 0.4.15",
2930
+ "windows-sys 0.59.0",
2931
+ ]
2932
+
2933
+ [[package]]
2934
+ name = "rustix"
2935
+ version = "1.0.7"
2936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2937
+ checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266"
2938
+ dependencies = [
2939
+ "bitflags 2.9.0",
2940
+ "errno",
2941
+ "libc",
2942
+ "linux-raw-sys 0.9.3",
2943
+ "windows-sys 0.59.0",
2944
+ ]
2945
+
2946
+ [[package]]
2947
+ name = "rustversion"
2948
+ version = "1.0.20"
2949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2950
+ checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
2951
+
2952
+ [[package]]
2953
+ name = "rustyline"
2954
+ version = "15.0.0"
2955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2956
+ checksum = "2ee1e066dc922e513bda599c6ccb5f3bb2b0ea5870a579448f2622993f0a9a2f"
2957
+ dependencies = [
2958
+ "bitflags 2.9.0",
2959
+ "cfg-if",
2960
+ "clipboard-win",
2961
+ "fd-lock",
2962
+ "home",
2963
+ "libc",
2964
+ "log",
2965
+ "memchr",
2966
+ "nix 0.29.0",
2967
+ "radix_trie",
2968
+ "rustyline-derive",
2969
+ "unicode-segmentation",
2970
+ "unicode-width 0.2.0",
2971
+ "utf8parse",
2972
+ "windows-sys 0.59.0",
2973
+ ]
2974
+
2975
+ [[package]]
2976
+ name = "rustyline-derive"
2977
+ version = "0.11.0"
2978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2979
+ checksum = "327e9d075f6df7e25fbf594f1be7ef55cf0d567a6cb5112eeccbbd51ceb48e0d"
2980
+ dependencies = [
2981
+ "proc-macro2",
2982
+ "quote",
2983
+ "syn 2.0.100",
2984
+ ]
2985
+
2986
+ [[package]]
2987
+ name = "ryu"
2988
+ version = "1.0.20"
2989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2990
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
2991
+
2992
+ [[package]]
2993
+ name = "same-file"
2994
+ version = "1.0.6"
2995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2996
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2997
+ dependencies = [
2998
+ "winapi-util",
2999
+ ]
3000
+
3001
+ [[package]]
3002
+ name = "schemars"
3003
+ version = "0.8.22"
3004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3005
+ checksum = "3fbf2ae1b8bc8e02df939598064d22402220cd5bbcca1c76f7d6a310974d5615"
3006
+ dependencies = [
3007
+ "dyn-clone",
3008
+ "indexmap 1.9.3",
3009
+ "schemars_derive",
3010
+ "serde",
3011
+ "serde_json",
3012
+ ]
3013
+
3014
+ [[package]]
3015
+ name = "schemars_derive"
3016
+ version = "0.8.22"
3017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3018
+ checksum = "32e265784ad618884abaea0600a9adf15393368d840e0222d101a072f3f7534d"
3019
+ dependencies = [
3020
+ "proc-macro2",
3021
+ "quote",
3022
+ "serde_derive_internals",
3023
+ "syn 2.0.100",
3024
+ ]
3025
+
3026
+ [[package]]
3027
+ name = "scopeguard"
3028
+ version = "1.2.0"
3029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3030
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
3031
+
3032
+ [[package]]
3033
+ name = "semver"
3034
+ version = "1.0.26"
3035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3036
+ checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
3037
+
3038
+ [[package]]
3039
+ name = "serde"
3040
+ version = "1.0.219"
3041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3042
+ checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
3043
+ dependencies = [
3044
+ "serde_derive",
3045
+ ]
3046
+
3047
+ [[package]]
3048
+ name = "serde_derive"
3049
+ version = "1.0.219"
3050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3051
+ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
3052
+ dependencies = [
3053
+ "proc-macro2",
3054
+ "quote",
3055
+ "syn 2.0.100",
3056
+ ]
3057
+
3058
+ [[package]]
3059
+ name = "serde_derive_internals"
3060
+ version = "0.29.1"
3061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3062
+ checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
3063
+ dependencies = [
3064
+ "proc-macro2",
3065
+ "quote",
3066
+ "syn 2.0.100",
3067
+ ]
3068
+
3069
+ [[package]]
3070
+ name = "serde_json"
3071
+ version = "1.0.140"
3072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3073
+ checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
3074
+ dependencies = [
3075
+ "itoa",
3076
+ "memchr",
3077
+ "ryu",
3078
+ "serde",
3079
+ ]
3080
+
3081
+ [[package]]
3082
+ name = "serde_spanned"
3083
+ version = "0.6.8"
3084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3085
+ checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1"
3086
+ dependencies = [
3087
+ "serde",
3088
+ ]
3089
+
3090
+ [[package]]
3091
+ name = "sharded-slab"
3092
+ version = "0.1.7"
3093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3094
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
3095
+ dependencies = [
3096
+ "lazy_static",
3097
+ ]
3098
+
3099
+ [[package]]
3100
+ name = "shlex"
3101
+ version = "1.3.0"
3102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3103
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
3104
+
3105
+ [[package]]
3106
+ name = "signal-hook-registry"
3107
+ version = "1.4.2"
3108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3109
+ checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
3110
+ dependencies = [
3111
+ "libc",
3112
+ ]
3113
+
3114
+ [[package]]
3115
+ name = "siphasher"
3116
+ version = "1.0.1"
3117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3118
+ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
3119
+
3120
+ [[package]]
3121
+ name = "slab"
3122
+ version = "0.4.9"
3123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3124
+ checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
3125
+ dependencies = [
3126
+ "autocfg",
3127
+ ]
3128
+
3129
+ [[package]]
3130
+ name = "smallvec"
3131
+ version = "1.14.0"
3132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3133
+ checksum = "7fcf8323ef1faaee30a44a340193b1ac6814fd9b7b4e88e9d4519a3e4abe1cfd"
3134
+
3135
+ [[package]]
3136
+ name = "socket2"
3137
+ version = "0.5.8"
3138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3139
+ checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8"
3140
+ dependencies = [
3141
+ "libc",
3142
+ "windows-sys 0.52.0",
3143
+ ]
3144
+
3145
+ [[package]]
3146
+ name = "sorted-vec"
3147
+ version = "0.8.6"
3148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3149
+ checksum = "d372029cb5195f9ab4e4b9aef550787dce78b124fcaee8d82519925defcd6f0d"
3150
+
3151
+ [[package]]
3152
+ name = "sqlparser_bench"
3153
+ version = "0.1.0"
3154
+ dependencies = [
3155
+ "criterion",
3156
+ "fallible-iterator",
3157
+ "turso_sqlite3_parser",
3158
+ ]
3159
+
3160
+ [[package]]
3161
+ name = "stable_deref_trait"
3162
+ version = "1.2.0"
3163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3164
+ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
3165
+
3166
+ [[package]]
3167
+ name = "str_stack"
3168
+ version = "0.1.0"
3169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3170
+ checksum = "9091b6114800a5f2141aee1d1b9d6ca3592ac062dc5decb3764ec5895a47b4eb"
3171
+
3172
+ [[package]]
3173
+ name = "strsim"
3174
+ version = "0.11.1"
3175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3176
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
3177
+
3178
+ [[package]]
3179
+ name = "strum"
3180
+ version = "0.26.3"
3181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3182
+ checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
3183
+ dependencies = [
3184
+ "strum_macros",
3185
+ ]
3186
+
3187
+ [[package]]
3188
+ name = "strum_macros"
3189
+ version = "0.26.4"
3190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3191
+ checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
3192
+ dependencies = [
3193
+ "heck",
3194
+ "proc-macro2",
3195
+ "quote",
3196
+ "rustversion",
3197
+ "syn 2.0.100",
3198
+ ]
3199
+
3200
+ [[package]]
3201
+ name = "supports-color"
3202
+ version = "3.0.2"
3203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3204
+ checksum = "c64fc7232dd8d2e4ac5ce4ef302b1d81e0b80d055b9d77c7c4f51f6aa4c867d6"
3205
+ dependencies = [
3206
+ "is_ci",
3207
+ ]
3208
+
3209
+ [[package]]
3210
+ name = "supports-hyperlinks"
3211
+ version = "3.1.0"
3212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3213
+ checksum = "804f44ed3c63152de6a9f90acbea1a110441de43006ea51bcce8f436196a288b"
3214
+
3215
+ [[package]]
3216
+ name = "supports-unicode"
3217
+ version = "3.0.0"
3218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3219
+ checksum = "b7401a30af6cb5818bb64852270bb722533397edcfc7344954a38f420819ece2"
3220
+
3221
+ [[package]]
3222
+ name = "symbolic-common"
3223
+ version = "12.14.1"
3224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3225
+ checksum = "66135c8273581acaab470356f808a1c74a707fe7ec24728af019d7247e089e71"
3226
+ dependencies = [
3227
+ "debugid",
3228
+ "memmap2",
3229
+ "stable_deref_trait",
3230
+ "uuid",
3231
+ ]
3232
+
3233
+ [[package]]
3234
+ name = "symbolic-demangle"
3235
+ version = "12.14.1"
3236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3237
+ checksum = "42bcacd080282a72e795864660b148392af7babd75691d5ae9a3b77e29c98c77"
3238
+ dependencies = [
3239
+ "cpp_demangle",
3240
+ "rustc-demangle",
3241
+ "symbolic-common",
3242
+ ]
3243
+
3244
+ [[package]]
3245
+ name = "syn"
3246
+ version = "1.0.109"
3247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3248
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
3249
+ dependencies = [
3250
+ "proc-macro2",
3251
+ "quote",
3252
+ "unicode-ident",
3253
+ ]
3254
+
3255
+ [[package]]
3256
+ name = "syn"
3257
+ version = "2.0.100"
3258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3259
+ checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0"
3260
+ dependencies = [
3261
+ "proc-macro2",
3262
+ "quote",
3263
+ "unicode-ident",
3264
+ ]
3265
+
3266
+ [[package]]
3267
+ name = "synstructure"
3268
+ version = "0.13.1"
3269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3270
+ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
3271
+ dependencies = [
3272
+ "proc-macro2",
3273
+ "quote",
3274
+ "syn 2.0.100",
3275
+ ]
3276
+
3277
+ [[package]]
3278
+ name = "syntect"
3279
+ version = "5.2.0"
3280
+ source = "git+https://github.com/trishume/syntect.git?rev=64644ffe064457265cbcee12a0c1baf9485ba6ee#64644ffe064457265cbcee12a0c1baf9485ba6ee"
3281
+ dependencies = [
3282
+ "bincode",
3283
+ "bitflags 1.3.2",
3284
+ "flate2",
3285
+ "fnv",
3286
+ "once_cell",
3287
+ "onig",
3288
+ "plist",
3289
+ "regex-syntax 0.8.5",
3290
+ "serde",
3291
+ "serde_derive",
3292
+ "serde_json",
3293
+ "thiserror 1.0.69",
3294
+ "walkdir",
3295
+ "yaml-rust",
3296
+ ]
3297
+
3298
+ [[package]]
3299
+ name = "target-lexicon"
3300
+ version = "0.13.2"
3301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3302
+ checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
3303
+
3304
+ [[package]]
3305
+ name = "tempfile"
3306
+ version = "3.20.0"
3307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3308
+ checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1"
3309
+ dependencies = [
3310
+ "fastrand",
3311
+ "getrandom 0.3.2",
3312
+ "once_cell",
3313
+ "rustix 1.0.7",
3314
+ "windows-sys 0.59.0",
3315
+ ]
3316
+
3317
+ [[package]]
3318
+ name = "termcolor"
3319
+ version = "1.4.1"
3320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3321
+ checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
3322
+ dependencies = [
3323
+ "winapi-util",
3324
+ ]
3325
+
3326
+ [[package]]
3327
+ name = "terminal_size"
3328
+ version = "0.4.2"
3329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3330
+ checksum = "45c6481c4829e4cc63825e62c49186a34538b7b2750b73b266581ffb612fb5ed"
3331
+ dependencies = [
3332
+ "rustix 1.0.7",
3333
+ "windows-sys 0.59.0",
3334
+ ]
3335
+
3336
+ [[package]]
3337
+ name = "termtree"
3338
+ version = "0.5.1"
3339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3340
+ checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
3341
+
3342
+ [[package]]
3343
+ name = "test-log"
3344
+ version = "0.2.17"
3345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3346
+ checksum = "e7f46083d221181166e5b6f6b1e5f1d499f3a76888826e6cb1d057554157cd0f"
3347
+ dependencies = [
3348
+ "env_logger 0.11.7",
3349
+ "test-log-macros",
3350
+ "tracing-subscriber",
3351
+ ]
3352
+
3353
+ [[package]]
3354
+ name = "test-log-macros"
3355
+ version = "0.2.17"
3356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3357
+ checksum = "888d0c3c6db53c0fdab160d2ed5e12ba745383d3e85813f2ea0f2b1475ab553f"
3358
+ dependencies = [
3359
+ "proc-macro2",
3360
+ "quote",
3361
+ "syn 2.0.100",
3362
+ ]
3363
+
3364
+ [[package]]
3365
+ name = "textwrap"
3366
+ version = "0.16.2"
3367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3368
+ checksum = "c13547615a44dc9c452a8a534638acdf07120d4b6847c8178705da06306a3057"
3369
+ dependencies = [
3370
+ "unicode-linebreak",
3371
+ "unicode-width 0.2.0",
3372
+ ]
3373
+
3374
+ [[package]]
3375
+ name = "thiserror"
3376
+ version = "1.0.69"
3377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3378
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
3379
+ dependencies = [
3380
+ "thiserror-impl 1.0.69",
3381
+ ]
3382
+
3383
+ [[package]]
3384
+ name = "thiserror"
3385
+ version = "2.0.12"
3386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3387
+ checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
3388
+ dependencies = [
3389
+ "thiserror-impl 2.0.12",
3390
+ ]
3391
+
3392
+ [[package]]
3393
+ name = "thiserror-impl"
3394
+ version = "1.0.69"
3395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3396
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
3397
+ dependencies = [
3398
+ "proc-macro2",
3399
+ "quote",
3400
+ "syn 2.0.100",
3401
+ ]
3402
+
3403
+ [[package]]
3404
+ name = "thiserror-impl"
3405
+ version = "2.0.12"
3406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3407
+ checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
3408
+ dependencies = [
3409
+ "proc-macro2",
3410
+ "quote",
3411
+ "syn 2.0.100",
3412
+ ]
3413
+
3414
+ [[package]]
3415
+ name = "thread_local"
3416
+ version = "1.1.8"
3417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3418
+ checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
3419
+ dependencies = [
3420
+ "cfg-if",
3421
+ "once_cell",
3422
+ ]
3423
+
3424
+ [[package]]
3425
+ name = "time"
3426
+ version = "0.3.41"
3427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3428
+ checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
3429
+ dependencies = [
3430
+ "deranged",
3431
+ "itoa",
3432
+ "num-conv",
3433
+ "powerfmt",
3434
+ "serde",
3435
+ "time-core",
3436
+ "time-macros",
3437
+ ]
3438
+
3439
+ [[package]]
3440
+ name = "time-core"
3441
+ version = "0.1.4"
3442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3443
+ checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
3444
+
3445
+ [[package]]
3446
+ name = "time-macros"
3447
+ version = "0.2.22"
3448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3449
+ checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
3450
+ dependencies = [
3451
+ "num-conv",
3452
+ "time-core",
3453
+ ]
3454
+
3455
+ [[package]]
3456
+ name = "tinystr"
3457
+ version = "0.7.6"
3458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3459
+ checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
3460
+ dependencies = [
3461
+ "displaydoc",
3462
+ "zerovec",
3463
+ ]
3464
+
3465
+ [[package]]
3466
+ name = "tinytemplate"
3467
+ version = "1.2.1"
3468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3469
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
3470
+ dependencies = [
3471
+ "serde",
3472
+ "serde_json",
3473
+ ]
3474
+
3475
+ [[package]]
3476
+ name = "tokio"
3477
+ version = "1.44.1"
3478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3479
+ checksum = "f382da615b842244d4b8738c82ed1275e6c5dd90c459a30941cd07080b06c91a"
3480
+ dependencies = [
3481
+ "backtrace",
3482
+ "bytes",
3483
+ "libc",
3484
+ "mio",
3485
+ "parking_lot",
3486
+ "pin-project-lite",
3487
+ "signal-hook-registry",
3488
+ "socket2",
3489
+ "tokio-macros",
3490
+ "windows-sys 0.52.0",
3491
+ ]
3492
+
3493
+ [[package]]
3494
+ name = "tokio-macros"
3495
+ version = "2.5.0"
3496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3497
+ checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
3498
+ dependencies = [
3499
+ "proc-macro2",
3500
+ "quote",
3501
+ "syn 2.0.100",
3502
+ ]
3503
+
3504
+ [[package]]
3505
+ name = "toml"
3506
+ version = "0.8.22"
3507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3508
+ checksum = "05ae329d1f08c4d17a59bed7ff5b5a769d062e64a62d34a3261b219e62cd5aae"
3509
+ dependencies = [
3510
+ "indexmap 2.8.0",
3511
+ "serde",
3512
+ "serde_spanned",
3513
+ "toml_datetime",
3514
+ "toml_edit",
3515
+ ]
3516
+
3517
+ [[package]]
3518
+ name = "toml_datetime"
3519
+ version = "0.6.9"
3520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3521
+ checksum = "3da5db5a963e24bc68be8b17b6fa82814bb22ee8660f192bb182771d498f09a3"
3522
+ dependencies = [
3523
+ "serde",
3524
+ ]
3525
+
3526
+ [[package]]
3527
+ name = "toml_edit"
3528
+ version = "0.22.26"
3529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3530
+ checksum = "310068873db2c5b3e7659d2cc35d21855dbafa50d1ce336397c666e3cb08137e"
3531
+ dependencies = [
3532
+ "indexmap 2.8.0",
3533
+ "serde",
3534
+ "serde_spanned",
3535
+ "toml_datetime",
3536
+ "toml_write",
3537
+ "winnow",
3538
+ ]
3539
+
3540
+ [[package]]
3541
+ name = "toml_write"
3542
+ version = "0.1.1"
3543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3544
+ checksum = "bfb942dfe1d8e29a7ee7fcbde5bd2b9a25fb89aa70caea2eba3bee836ff41076"
3545
+
3546
+ [[package]]
3547
+ name = "tracing"
3548
+ version = "0.1.41"
3549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3550
+ checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
3551
+ dependencies = [
3552
+ "pin-project-lite",
3553
+ "tracing-attributes",
3554
+ "tracing-core",
3555
+ ]
3556
+
3557
+ [[package]]
3558
+ name = "tracing-appender"
3559
+ version = "0.2.3"
3560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3561
+ checksum = "3566e8ce28cc0a3fe42519fc80e6b4c943cc4c8cef275620eb8dac2d3d4e06cf"
3562
+ dependencies = [
3563
+ "crossbeam-channel",
3564
+ "thiserror 1.0.69",
3565
+ "time",
3566
+ "tracing-subscriber",
3567
+ ]
3568
+
3569
+ [[package]]
3570
+ name = "tracing-attributes"
3571
+ version = "0.1.28"
3572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3573
+ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
3574
+ dependencies = [
3575
+ "proc-macro2",
3576
+ "quote",
3577
+ "syn 2.0.100",
3578
+ ]
3579
+
3580
+ [[package]]
3581
+ name = "tracing-core"
3582
+ version = "0.1.33"
3583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3584
+ checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
3585
+ dependencies = [
3586
+ "once_cell",
3587
+ "valuable",
3588
+ ]
3589
+
3590
+ [[package]]
3591
+ name = "tracing-log"
3592
+ version = "0.2.0"
3593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3594
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
3595
+ dependencies = [
3596
+ "log",
3597
+ "once_cell",
3598
+ "tracing-core",
3599
+ ]
3600
+
3601
+ [[package]]
3602
+ name = "tracing-subscriber"
3603
+ version = "0.3.19"
3604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3605
+ checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008"
3606
+ dependencies = [
3607
+ "matchers",
3608
+ "nu-ansi-term 0.46.0",
3609
+ "once_cell",
3610
+ "regex",
3611
+ "sharded-slab",
3612
+ "smallvec",
3613
+ "thread_local",
3614
+ "tracing",
3615
+ "tracing-core",
3616
+ "tracing-log",
3617
+ ]
3618
+
3619
+ [[package]]
3620
+ name = "turso"
3621
+ version = "0.1.0"
3622
+ dependencies = [
3623
+ "tempfile",
3624
+ "thiserror 2.0.12",
3625
+ "tokio",
3626
+ "turso_core",
3627
+ ]
3628
+
3629
+ [[package]]
3630
+ name = "turso_cli"
3631
+ version = "0.1.0"
3632
+ dependencies = [
3633
+ "anyhow",
3634
+ "cfg-if",
3635
+ "clap",
3636
+ "clap_complete",
3637
+ "comfy-table",
3638
+ "csv",
3639
+ "ctrlc",
3640
+ "dirs 5.0.1",
3641
+ "env_logger 0.10.2",
3642
+ "libc",
3643
+ "limbo_completion",
3644
+ "miette",
3645
+ "nu-ansi-term 0.50.1",
3646
+ "rustyline",
3647
+ "schemars",
3648
+ "serde",
3649
+ "shlex",
3650
+ "syntect",
3651
+ "toml",
3652
+ "toml_edit",
3653
+ "tracing",
3654
+ "tracing-appender",
3655
+ "tracing-subscriber",
3656
+ "turso_core",
3657
+ "validator",
3658
+ ]
3659
+
3660
+ [[package]]
3661
+ name = "turso_core"
3662
+ version = "0.1.0"
3663
+ dependencies = [
3664
+ "antithesis_sdk",
3665
+ "bitflags 2.9.0",
3666
+ "built",
3667
+ "cfg_block",
3668
+ "chrono",
3669
+ "criterion",
3670
+ "crossbeam-skiplist",
3671
+ "env_logger 0.11.7",
3672
+ "fallible-iterator",
3673
+ "getrandom 0.2.15",
3674
+ "hex",
3675
+ "io-uring",
3676
+ "julian_day_converter",
3677
+ "libc",
3678
+ "libloading",
3679
+ "libm",
3680
+ "lru",
3681
+ "miette",
3682
+ "mimalloc",
3683
+ "parking_lot",
3684
+ "paste",
3685
+ "polling",
3686
+ "pprof",
3687
+ "quickcheck",
3688
+ "quickcheck_macros",
3689
+ "rand 0.8.5",
3690
+ "rand_chacha 0.9.0",
3691
+ "regex",
3692
+ "regex-syntax 0.8.5",
3693
+ "rstest",
3694
+ "rusqlite",
3695
+ "rustix 1.0.7",
3696
+ "ryu",
3697
+ "serde",
3698
+ "sorted-vec",
3699
+ "strum",
3700
+ "strum_macros",
3701
+ "tempfile",
3702
+ "test-log",
3703
+ "thiserror 1.0.69",
3704
+ "tracing",
3705
+ "turso_ext",
3706
+ "turso_macros",
3707
+ "turso_sqlite3_parser",
3708
+ "uncased",
3709
+ "uuid",
3710
+ ]
3711
+
3712
+ [[package]]
3713
+ name = "turso_ext"
3714
+ version = "0.1.0"
3715
+ dependencies = [
3716
+ "chrono",
3717
+ "getrandom 0.3.2",
3718
+ "turso_macros",
3719
+ ]
3720
+
3721
+ [[package]]
3722
+ name = "turso_ext_tests"
3723
+ version = "0.1.0"
3724
+ dependencies = [
3725
+ "env_logger 0.11.7",
3726
+ "lazy_static",
3727
+ "log",
3728
+ "mimalloc",
3729
+ "turso_ext",
3730
+ ]
3731
+
3732
+ [[package]]
3733
+ name = "turso_macros"
3734
+ version = "0.1.0"
3735
+ dependencies = [
3736
+ "proc-macro2",
3737
+ "quote",
3738
+ "syn 2.0.100",
3739
+ ]
3740
+
3741
+ [[package]]
3742
+ name = "turso_node"
3743
+ version = "0.1.0"
3744
+ dependencies = [
3745
+ "napi",
3746
+ "napi-build",
3747
+ "napi-derive",
3748
+ "turso_core",
3749
+ ]
3750
+
3751
+ [[package]]
3752
+ name = "turso_sqlite3_parser"
3753
+ version = "0.1.0"
3754
+ dependencies = [
3755
+ "bitflags 2.9.0",
3756
+ "cc",
3757
+ "env_logger 0.11.7",
3758
+ "fallible-iterator",
3759
+ "indexmap 2.8.0",
3760
+ "log",
3761
+ "memchr",
3762
+ "miette",
3763
+ "phf",
3764
+ "phf_codegen",
3765
+ "phf_shared",
3766
+ "serde",
3767
+ "strum",
3768
+ "strum_macros",
3769
+ "uncased",
3770
+ ]
3771
+
3772
+ [[package]]
3773
+ name = "uncased"
3774
+ version = "0.9.10"
3775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3776
+ checksum = "e1b88fcfe09e89d3866a5c11019378088af2d24c3fbd4f0543f96b479ec90697"
3777
+ dependencies = [
3778
+ "version_check",
3779
+ ]
3780
+
3781
+ [[package]]
3782
+ name = "unicode-ident"
3783
+ version = "1.0.18"
3784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3785
+ checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
3786
+
3787
+ [[package]]
3788
+ name = "unicode-linebreak"
3789
+ version = "0.1.5"
3790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3791
+ checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f"
3792
+
3793
+ [[package]]
3794
+ name = "unicode-segmentation"
3795
+ version = "1.12.0"
3796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3797
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
3798
+
3799
+ [[package]]
3800
+ name = "unicode-width"
3801
+ version = "0.1.14"
3802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3803
+ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
3804
+
3805
+ [[package]]
3806
+ name = "unicode-width"
3807
+ version = "0.2.0"
3808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3809
+ checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
3810
+
3811
+ [[package]]
3812
+ name = "unindent"
3813
+ version = "0.2.4"
3814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3815
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
3816
+
3817
+ [[package]]
3818
+ name = "untrusted"
3819
+ version = "0.9.0"
3820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3821
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3822
+
3823
+ [[package]]
3824
+ name = "url"
3825
+ version = "2.5.4"
3826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3827
+ checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
3828
+ dependencies = [
3829
+ "form_urlencoded",
3830
+ "idna",
3831
+ "percent-encoding",
3832
+ ]
3833
+
3834
+ [[package]]
3835
+ name = "urlencoding"
3836
+ version = "2.1.3"
3837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3838
+ checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
3839
+
3840
+ [[package]]
3841
+ name = "utf16_iter"
3842
+ version = "1.0.5"
3843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3844
+ checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
3845
+
3846
+ [[package]]
3847
+ name = "utf8_iter"
3848
+ version = "1.0.4"
3849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3850
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3851
+
3852
+ [[package]]
3853
+ name = "utf8parse"
3854
+ version = "0.2.2"
3855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3856
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3857
+
3858
+ [[package]]
3859
+ name = "uuid"
3860
+ version = "1.16.0"
3861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3862
+ checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
3863
+ dependencies = [
3864
+ "getrandom 0.3.2",
3865
+ ]
3866
+
3867
+ [[package]]
3868
+ name = "validator"
3869
+ version = "0.20.0"
3870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3871
+ checksum = "43fb22e1a008ece370ce08a3e9e4447a910e92621bb49b85d6e48a45397e7cfa"
3872
+ dependencies = [
3873
+ "idna",
3874
+ "once_cell",
3875
+ "regex",
3876
+ "serde",
3877
+ "serde_derive",
3878
+ "serde_json",
3879
+ "url",
3880
+ "validator_derive",
3881
+ ]
3882
+
3883
+ [[package]]
3884
+ name = "validator_derive"
3885
+ version = "0.20.0"
3886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3887
+ checksum = "b7df16e474ef958526d1205f6dda359fdfab79d9aa6d54bafcb92dcd07673dca"
3888
+ dependencies = [
3889
+ "darling",
3890
+ "once_cell",
3891
+ "proc-macro-error2",
3892
+ "proc-macro2",
3893
+ "quote",
3894
+ "syn 2.0.100",
3895
+ ]
3896
+
3897
+ [[package]]
3898
+ name = "valuable"
3899
+ version = "0.1.1"
3900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3901
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
3902
+
3903
+ [[package]]
3904
+ name = "vcpkg"
3905
+ version = "0.2.15"
3906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3907
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
3908
+
3909
+ [[package]]
3910
+ name = "version_check"
3911
+ version = "0.9.5"
3912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3913
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3914
+
3915
+ [[package]]
3916
+ name = "wait-timeout"
3917
+ version = "0.2.1"
3918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3919
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
3920
+ dependencies = [
3921
+ "libc",
3922
+ ]
3923
+
3924
+ [[package]]
3925
+ name = "walkdir"
3926
+ version = "2.5.0"
3927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3928
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
3929
+ dependencies = [
3930
+ "same-file",
3931
+ "winapi-util",
3932
+ ]
3933
+
3934
+ [[package]]
3935
+ name = "wasi"
3936
+ version = "0.11.0+wasi-snapshot-preview1"
3937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3938
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
3939
+
3940
+ [[package]]
3941
+ name = "wasi"
3942
+ version = "0.14.2+wasi-0.2.4"
3943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3944
+ checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
3945
+ dependencies = [
3946
+ "wit-bindgen-rt",
3947
+ ]
3948
+
3949
+ [[package]]
3950
+ name = "wasm-bindgen"
3951
+ version = "0.2.100"
3952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3953
+ checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
3954
+ dependencies = [
3955
+ "cfg-if",
3956
+ "once_cell",
3957
+ "rustversion",
3958
+ "wasm-bindgen-macro",
3959
+ ]
3960
+
3961
+ [[package]]
3962
+ name = "wasm-bindgen-backend"
3963
+ version = "0.2.100"
3964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3965
+ checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
3966
+ dependencies = [
3967
+ "bumpalo",
3968
+ "log",
3969
+ "proc-macro2",
3970
+ "quote",
3971
+ "syn 2.0.100",
3972
+ "wasm-bindgen-shared",
3973
+ ]
3974
+
3975
+ [[package]]
3976
+ name = "wasm-bindgen-futures"
3977
+ version = "0.4.50"
3978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3979
+ checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
3980
+ dependencies = [
3981
+ "cfg-if",
3982
+ "js-sys",
3983
+ "once_cell",
3984
+ "wasm-bindgen",
3985
+ "web-sys",
3986
+ ]
3987
+
3988
+ [[package]]
3989
+ name = "wasm-bindgen-macro"
3990
+ version = "0.2.100"
3991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3992
+ checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
3993
+ dependencies = [
3994
+ "quote",
3995
+ "wasm-bindgen-macro-support",
3996
+ ]
3997
+
3998
+ [[package]]
3999
+ name = "wasm-bindgen-macro-support"
4000
+ version = "0.2.100"
4001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4002
+ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
4003
+ dependencies = [
4004
+ "proc-macro2",
4005
+ "quote",
4006
+ "syn 2.0.100",
4007
+ "wasm-bindgen-backend",
4008
+ "wasm-bindgen-shared",
4009
+ ]
4010
+
4011
+ [[package]]
4012
+ name = "wasm-bindgen-shared"
4013
+ version = "0.2.100"
4014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4015
+ checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
4016
+ dependencies = [
4017
+ "unicode-ident",
4018
+ ]
4019
+
4020
+ [[package]]
4021
+ name = "web-sys"
4022
+ version = "0.3.77"
4023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4024
+ checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
4025
+ dependencies = [
4026
+ "js-sys",
4027
+ "wasm-bindgen",
4028
+ ]
4029
+
4030
+ [[package]]
4031
+ name = "winapi"
4032
+ version = "0.3.9"
4033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4034
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
4035
+ dependencies = [
4036
+ "winapi-i686-pc-windows-gnu",
4037
+ "winapi-x86_64-pc-windows-gnu",
4038
+ ]
4039
+
4040
+ [[package]]
4041
+ name = "winapi-i686-pc-windows-gnu"
4042
+ version = "0.4.0"
4043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4044
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
4045
+
4046
+ [[package]]
4047
+ name = "winapi-util"
4048
+ version = "0.1.9"
4049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4050
+ checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
4051
+ dependencies = [
4052
+ "windows-sys 0.59.0",
4053
+ ]
4054
+
4055
+ [[package]]
4056
+ name = "winapi-x86_64-pc-windows-gnu"
4057
+ version = "0.4.0"
4058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4059
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
4060
+
4061
+ [[package]]
4062
+ name = "windows-core"
4063
+ version = "0.52.0"
4064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4065
+ checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
4066
+ dependencies = [
4067
+ "windows-targets 0.52.6",
4068
+ ]
4069
+
4070
+ [[package]]
4071
+ name = "windows-link"
4072
+ version = "0.1.1"
4073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4074
+ checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
4075
+
4076
+ [[package]]
4077
+ name = "windows-sys"
4078
+ version = "0.45.0"
4079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4080
+ checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
4081
+ dependencies = [
4082
+ "windows-targets 0.42.2",
4083
+ ]
4084
+
4085
+ [[package]]
4086
+ name = "windows-sys"
4087
+ version = "0.48.0"
4088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4089
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
4090
+ dependencies = [
4091
+ "windows-targets 0.48.5",
4092
+ ]
4093
+
4094
+ [[package]]
4095
+ name = "windows-sys"
4096
+ version = "0.52.0"
4097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4098
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
4099
+ dependencies = [
4100
+ "windows-targets 0.52.6",
4101
+ ]
4102
+
4103
+ [[package]]
4104
+ name = "windows-sys"
4105
+ version = "0.59.0"
4106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4107
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
4108
+ dependencies = [
4109
+ "windows-targets 0.52.6",
4110
+ ]
4111
+
4112
+ [[package]]
4113
+ name = "windows-targets"
4114
+ version = "0.42.2"
4115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4116
+ checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
4117
+ dependencies = [
4118
+ "windows_aarch64_gnullvm 0.42.2",
4119
+ "windows_aarch64_msvc 0.42.2",
4120
+ "windows_i686_gnu 0.42.2",
4121
+ "windows_i686_msvc 0.42.2",
4122
+ "windows_x86_64_gnu 0.42.2",
4123
+ "windows_x86_64_gnullvm 0.42.2",
4124
+ "windows_x86_64_msvc 0.42.2",
4125
+ ]
4126
+
4127
+ [[package]]
4128
+ name = "windows-targets"
4129
+ version = "0.48.5"
4130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4131
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
4132
+ dependencies = [
4133
+ "windows_aarch64_gnullvm 0.48.5",
4134
+ "windows_aarch64_msvc 0.48.5",
4135
+ "windows_i686_gnu 0.48.5",
4136
+ "windows_i686_msvc 0.48.5",
4137
+ "windows_x86_64_gnu 0.48.5",
4138
+ "windows_x86_64_gnullvm 0.48.5",
4139
+ "windows_x86_64_msvc 0.48.5",
4140
+ ]
4141
+
4142
+ [[package]]
4143
+ name = "windows-targets"
4144
+ version = "0.52.6"
4145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4146
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
4147
+ dependencies = [
4148
+ "windows_aarch64_gnullvm 0.52.6",
4149
+ "windows_aarch64_msvc 0.52.6",
4150
+ "windows_i686_gnu 0.52.6",
4151
+ "windows_i686_gnullvm",
4152
+ "windows_i686_msvc 0.52.6",
4153
+ "windows_x86_64_gnu 0.52.6",
4154
+ "windows_x86_64_gnullvm 0.52.6",
4155
+ "windows_x86_64_msvc 0.52.6",
4156
+ ]
4157
+
4158
+ [[package]]
4159
+ name = "windows_aarch64_gnullvm"
4160
+ version = "0.42.2"
4161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4162
+ checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
4163
+
4164
+ [[package]]
4165
+ name = "windows_aarch64_gnullvm"
4166
+ version = "0.48.5"
4167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4168
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
4169
+
4170
+ [[package]]
4171
+ name = "windows_aarch64_gnullvm"
4172
+ version = "0.52.6"
4173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4174
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
4175
+
4176
+ [[package]]
4177
+ name = "windows_aarch64_msvc"
4178
+ version = "0.42.2"
4179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4180
+ checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
4181
+
4182
+ [[package]]
4183
+ name = "windows_aarch64_msvc"
4184
+ version = "0.48.5"
4185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4186
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
4187
+
4188
+ [[package]]
4189
+ name = "windows_aarch64_msvc"
4190
+ version = "0.52.6"
4191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4192
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
4193
+
4194
+ [[package]]
4195
+ name = "windows_i686_gnu"
4196
+ version = "0.42.2"
4197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4198
+ checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
4199
+
4200
+ [[package]]
4201
+ name = "windows_i686_gnu"
4202
+ version = "0.48.5"
4203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4204
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
4205
+
4206
+ [[package]]
4207
+ name = "windows_i686_gnu"
4208
+ version = "0.52.6"
4209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4210
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
4211
+
4212
+ [[package]]
4213
+ name = "windows_i686_gnullvm"
4214
+ version = "0.52.6"
4215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4216
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
4217
+
4218
+ [[package]]
4219
+ name = "windows_i686_msvc"
4220
+ version = "0.42.2"
4221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4222
+ checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
4223
+
4224
+ [[package]]
4225
+ name = "windows_i686_msvc"
4226
+ version = "0.48.5"
4227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4228
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
4229
+
4230
+ [[package]]
4231
+ name = "windows_i686_msvc"
4232
+ version = "0.52.6"
4233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4234
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
4235
+
4236
+ [[package]]
4237
+ name = "windows_x86_64_gnu"
4238
+ version = "0.42.2"
4239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4240
+ checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
4241
+
4242
+ [[package]]
4243
+ name = "windows_x86_64_gnu"
4244
+ version = "0.48.5"
4245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4246
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
4247
+
4248
+ [[package]]
4249
+ name = "windows_x86_64_gnu"
4250
+ version = "0.52.6"
4251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4252
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
4253
+
4254
+ [[package]]
4255
+ name = "windows_x86_64_gnullvm"
4256
+ version = "0.42.2"
4257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4258
+ checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
4259
+
4260
+ [[package]]
4261
+ name = "windows_x86_64_gnullvm"
4262
+ version = "0.48.5"
4263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4264
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
4265
+
4266
+ [[package]]
4267
+ name = "windows_x86_64_gnullvm"
4268
+ version = "0.52.6"
4269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4270
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
4271
+
4272
+ [[package]]
4273
+ name = "windows_x86_64_msvc"
4274
+ version = "0.42.2"
4275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4276
+ checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
4277
+
4278
+ [[package]]
4279
+ name = "windows_x86_64_msvc"
4280
+ version = "0.48.5"
4281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4282
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
4283
+
4284
+ [[package]]
4285
+ name = "windows_x86_64_msvc"
4286
+ version = "0.52.6"
4287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4288
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
4289
+
4290
+ [[package]]
4291
+ name = "winnow"
4292
+ version = "0.7.8"
4293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4294
+ checksum = "9e27d6ad3dac991091e4d35de9ba2d2d00647c5d0fc26c5496dee55984ae111b"
4295
+ dependencies = [
4296
+ "memchr",
4297
+ ]
4298
+
4299
+ [[package]]
4300
+ name = "wit-bindgen-rt"
4301
+ version = "0.39.0"
4302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4303
+ checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
4304
+ dependencies = [
4305
+ "bitflags 2.9.0",
4306
+ ]
4307
+
4308
+ [[package]]
4309
+ name = "write16"
4310
+ version = "1.0.0"
4311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4312
+ checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
4313
+
4314
+ [[package]]
4315
+ name = "writeable"
4316
+ version = "0.5.5"
4317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4318
+ checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
4319
+
4320
+ [[package]]
4321
+ name = "yaml-rust"
4322
+ version = "0.4.5"
4323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4324
+ checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
4325
+ dependencies = [
4326
+ "linked-hash-map",
4327
+ ]
4328
+
4329
+ [[package]]
4330
+ name = "yoke"
4331
+ version = "0.7.5"
4332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4333
+ checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
4334
+ dependencies = [
4335
+ "serde",
4336
+ "stable_deref_trait",
4337
+ "yoke-derive",
4338
+ "zerofrom",
4339
+ ]
4340
+
4341
+ [[package]]
4342
+ name = "yoke-derive"
4343
+ version = "0.7.5"
4344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4345
+ checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
4346
+ dependencies = [
4347
+ "proc-macro2",
4348
+ "quote",
4349
+ "syn 2.0.100",
4350
+ "synstructure",
4351
+ ]
4352
+
4353
+ [[package]]
4354
+ name = "zerocopy"
4355
+ version = "0.7.35"
4356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4357
+ checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
4358
+ dependencies = [
4359
+ "zerocopy-derive 0.7.35",
4360
+ ]
4361
+
4362
+ [[package]]
4363
+ name = "zerocopy"
4364
+ version = "0.8.24"
4365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4366
+ checksum = "2586fea28e186957ef732a5f8b3be2da217d65c5969d4b1e17f973ebbe876879"
4367
+ dependencies = [
4368
+ "zerocopy-derive 0.8.24",
4369
+ ]
4370
+
4371
+ [[package]]
4372
+ name = "zerocopy-derive"
4373
+ version = "0.7.35"
4374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4375
+ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
4376
+ dependencies = [
4377
+ "proc-macro2",
4378
+ "quote",
4379
+ "syn 2.0.100",
4380
+ ]
4381
+
4382
+ [[package]]
4383
+ name = "zerocopy-derive"
4384
+ version = "0.8.24"
4385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4386
+ checksum = "a996a8f63c5c4448cd959ac1bab0aaa3306ccfd060472f85943ee0750f0169be"
4387
+ dependencies = [
4388
+ "proc-macro2",
4389
+ "quote",
4390
+ "syn 2.0.100",
4391
+ ]
4392
+
4393
+ [[package]]
4394
+ name = "zerofrom"
4395
+ version = "0.1.6"
4396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4397
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
4398
+ dependencies = [
4399
+ "zerofrom-derive",
4400
+ ]
4401
+
4402
+ [[package]]
4403
+ name = "zerofrom-derive"
4404
+ version = "0.1.6"
4405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4406
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
4407
+ dependencies = [
4408
+ "proc-macro2",
4409
+ "quote",
4410
+ "syn 2.0.100",
4411
+ "synstructure",
4412
+ ]
4413
+
4414
+ [[package]]
4415
+ name = "zerovec"
4416
+ version = "0.10.4"
4417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4418
+ checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
4419
+ dependencies = [
4420
+ "yoke",
4421
+ "zerofrom",
4422
+ "zerovec-derive",
4423
+ ]
4424
+
4425
+ [[package]]
4426
+ name = "zerovec-derive"
4427
+ version = "0.10.3"
4428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4429
+ checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
4430
+ dependencies = [
4431
+ "proc-macro2",
4432
+ "quote",
4433
+ "syn 2.0.100",
4434
+ ]