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