pyturso 0.3.0rc1__tar.gz → 0.3.0rc3__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 (187) hide show
  1. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/Cargo.lock +511 -32
  2. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/Cargo.toml +18 -17
  3. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/PKG-INFO +1 -1
  4. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/bindings/python/Cargo.toml +1 -1
  5. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/Cargo.toml +1 -0
  6. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/build.rs +7 -1
  7. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/ext/mod.rs +2 -2
  8. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/function.rs +1 -1
  9. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/incremental/aggregate_operator.rs +1 -0
  10. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/incremental/compiler.rs +32 -8
  11. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/incremental/cursor.rs +1 -1
  12. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/incremental/join_operator.rs +1 -0
  13. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/incremental/operator.rs +3 -1
  14. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/incremental/view.rs +31 -4
  15. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/io/clock.rs +12 -0
  16. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/io/generic.rs +6 -8
  17. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/io/io_uring.rs +2 -6
  18. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/io/memory.rs +2 -6
  19. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/io/mod.rs +355 -25
  20. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/io/unix.rs +2 -6
  21. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/io/vfs.rs +2 -6
  22. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/io/windows.rs +4 -6
  23. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/lib.rs +30 -5
  24. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/mvcc/cursor.rs +227 -89
  25. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/mvcc/database/checkpoint_state_machine.rs +1 -1
  26. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/mvcc/database/tests.rs +54 -18
  27. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/schema.rs +86 -19
  28. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/storage/btree.rs +151 -827
  29. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/storage/buffer_pool.rs +3 -6
  30. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/storage/checksum.rs +4 -6
  31. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/storage/pager.rs +23 -13
  32. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/storage/wal.rs +11 -7
  33. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/translate/alter.rs +12 -1
  34. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/translate/analyze.rs +1 -0
  35. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/translate/compound_select.rs +59 -38
  36. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/translate/delete.rs +1 -1
  37. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/translate/emitter.rs +205 -101
  38. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/translate/expr.rs +75 -51
  39. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/translate/index.rs +1 -0
  40. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/translate/insert.rs +1263 -953
  41. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/translate/logical.rs +9 -3
  42. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/translate/main_loop.rs +61 -27
  43. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/translate/mod.rs +15 -11
  44. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/translate/optimizer/mod.rs +177 -21
  45. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/translate/plan.rs +180 -19
  46. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/translate/planner.rs +37 -2
  47. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/translate/result_row.rs +3 -36
  48. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/translate/schema.rs +54 -25
  49. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/translate/select.rs +19 -4
  50. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/translate/update.rs +20 -124
  51. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/translate/upsert.rs +43 -46
  52. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/translate/view.rs +2 -0
  53. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/types.rs +9 -17
  54. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/util.rs +1 -7
  55. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/vdbe/builder.rs +12 -0
  56. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/vdbe/execute.rs +24 -16
  57. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/vdbe/explain.rs +1 -1
  58. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/vdbe/insn.rs +8 -0
  59. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/vdbe/mod.rs +17 -1
  60. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/vdbe/sorter.rs +19 -14
  61. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/vector/vector_types.rs +18 -1
  62. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/bindings/python/build.rs +0 -0
  63. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/bindings/python/example.py +0 -0
  64. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/bindings/python/requirements-dev.txt +0 -0
  65. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/bindings/python/requirements.txt +0 -0
  66. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/bindings/python/src/errors.rs +0 -0
  67. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/bindings/python/src/lib.rs +0 -0
  68. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/bindings/python/tests/__init__.py +0 -0
  69. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/bindings/python/tests/test_database.py +0 -0
  70. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/bindings/python/turso/__init__.py +0 -0
  71. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/bindings/python/turso/py.typed +0 -0
  72. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/assert.rs +0 -0
  73. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/benches/benchmark.rs +0 -0
  74. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/benches/json_benchmark.rs +0 -0
  75. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/benches/mvcc_benchmark.rs +0 -0
  76. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/benches/tpc_h_benchmark.rs +0 -0
  77. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/error.rs +0 -0
  78. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/ext/dynamic.rs +0 -0
  79. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/ext/vtab_xconnect.rs +0 -0
  80. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/fast_lock.rs +0 -0
  81. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/functions/datetime.rs +0 -0
  82. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/functions/mod.rs +0 -0
  83. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/functions/printf.rs +0 -0
  84. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/functions/strftime.rs +0 -0
  85. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/incremental/dbsp.rs +0 -0
  86. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/incremental/expr_compiler.rs +0 -0
  87. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/incremental/filter_operator.rs +0 -0
  88. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/incremental/input_operator.rs +0 -0
  89. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/incremental/merge_operator.rs +0 -0
  90. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/incremental/mod.rs +0 -0
  91. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/incremental/persistence.rs +0 -0
  92. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/incremental/project_operator.rs +0 -0
  93. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/info.rs +0 -0
  94. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/io/common.rs +0 -0
  95. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/json/cache.rs +0 -0
  96. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/json/error.rs +0 -0
  97. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/json/jsonb.rs +0 -0
  98. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/json/mod.rs +0 -0
  99. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/json/ops.rs +0 -0
  100. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/json/path.rs +0 -0
  101. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/json/vtab.rs +0 -0
  102. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/mvcc/clock.rs +0 -0
  103. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/mvcc/database/mod.rs +0 -0
  104. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/mvcc/mod.rs +0 -0
  105. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/mvcc/persistent_storage/logical_log.rs +0 -0
  106. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/mvcc/persistent_storage/mod.rs +0 -0
  107. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/numeric/mod.rs +0 -0
  108. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/numeric/nonnan.rs +0 -0
  109. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/parameters.rs +0 -0
  110. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/pragma.rs +0 -0
  111. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/pseudo.rs +0 -0
  112. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/series.rs +0 -0
  113. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/state_machine.rs +0 -0
  114. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/storage/database.rs +0 -0
  115. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/storage/encryption.rs +0 -0
  116. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/storage/mod.rs +0 -0
  117. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/storage/page_cache.rs +0 -0
  118. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/storage/slot_bitmap.rs +0 -0
  119. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/storage/sqlite3_ondisk.rs +0 -0
  120. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/storage/state_machines.rs +0 -0
  121. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/time/internal.rs +0 -0
  122. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/time/mod.rs +0 -0
  123. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/translate/aggregation.rs +0 -0
  124. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/translate/attach.rs +0 -0
  125. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/translate/collate.rs +0 -0
  126. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/translate/display.rs +0 -0
  127. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/translate/fkeys.rs +0 -0
  128. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/translate/group_by.rs +0 -0
  129. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/translate/integrity_check.rs +0 -0
  130. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/translate/optimizer/OPTIMIZER.md +0 -0
  131. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/translate/optimizer/access_method.rs +0 -0
  132. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/translate/optimizer/constraints.rs +0 -0
  133. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/translate/optimizer/cost.rs +0 -0
  134. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/translate/optimizer/join.rs +0 -0
  135. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/translate/optimizer/lift_common_subexpressions.rs +0 -0
  136. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/translate/optimizer/order.rs +0 -0
  137. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/translate/order_by.rs +0 -0
  138. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/translate/pragma.rs +0 -0
  139. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/translate/rollback.rs +0 -0
  140. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/translate/subquery.rs +0 -0
  141. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/translate/transaction.rs +0 -0
  142. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/translate/values.rs +0 -0
  143. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/translate/window.rs +0 -0
  144. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/uuid.rs +0 -0
  145. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/vdbe/likeop.rs +0 -0
  146. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/vdbe/metrics.rs +0 -0
  147. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/vector/mod.rs +0 -0
  148. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/vector/operations/concat.rs +0 -0
  149. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/vector/operations/convert.rs +0 -0
  150. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/vector/operations/distance_cos.rs +0 -0
  151. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/vector/operations/distance_l2.rs +0 -0
  152. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/vector/operations/jaccard.rs +0 -0
  153. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/vector/operations/mod.rs +0 -0
  154. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/vector/operations/serialize.rs +0 -0
  155. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/vector/operations/slice.rs +0 -0
  156. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/vector/operations/text.rs +0 -0
  157. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/core/vtab.rs +0 -0
  158. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/extensions/core/Cargo.toml +0 -0
  159. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/extensions/core/README.md +0 -0
  160. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/extensions/core/build.rs +0 -0
  161. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/extensions/core/src/functions.rs +0 -0
  162. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/extensions/core/src/lib.rs +0 -0
  163. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/extensions/core/src/types.rs +0 -0
  164. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/extensions/core/src/vfs_modules.rs +0 -0
  165. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/extensions/core/src/vtabs.rs +0 -0
  166. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/macros/Cargo.toml +0 -0
  167. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/macros/src/ext/agg_derive.rs +0 -0
  168. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/macros/src/ext/match_ignore_ascii_case.rs +0 -0
  169. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/macros/src/ext/mod.rs +0 -0
  170. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/macros/src/ext/scalars.rs +0 -0
  171. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/macros/src/ext/vfs_derive.rs +0 -0
  172. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/macros/src/ext/vtab_derive.rs +0 -0
  173. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/macros/src/lib.rs +0 -0
  174. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/parser/Cargo.toml +0 -0
  175. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/parser/README.md +0 -0
  176. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/parser/benches/parser_benchmark.rs +0 -0
  177. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/parser/src/ast/check.rs +0 -0
  178. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/parser/src/ast/fmt.rs +0 -0
  179. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/parser/src/ast.rs +0 -0
  180. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/parser/src/error.rs +0 -0
  181. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/parser/src/lexer.rs +0 -0
  182. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/parser/src/lib.rs +0 -0
  183. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/parser/src/parser.rs +0 -0
  184. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/parser/src/token.rs +0 -0
  185. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/pyproject.toml +0 -0
  186. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/turso/__init__.py +0 -0
  187. {pyturso-0.3.0rc1 → pyturso-0.3.0rc3}/turso/py.typed +0 -0
@@ -255,18 +255,104 @@ dependencies = [
255
255
  "wait-timeout",
256
256
  ]
257
257
 
258
+ [[package]]
259
+ name = "async-stream"
260
+ version = "0.3.6"
261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
262
+ checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
263
+ dependencies = [
264
+ "async-stream-impl",
265
+ "futures-core",
266
+ "pin-project-lite",
267
+ ]
268
+
269
+ [[package]]
270
+ name = "async-stream-impl"
271
+ version = "0.3.6"
272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
273
+ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
274
+ dependencies = [
275
+ "proc-macro2",
276
+ "quote",
277
+ "syn 2.0.100",
278
+ ]
279
+
280
+ [[package]]
281
+ name = "async-trait"
282
+ version = "0.1.89"
283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
284
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
285
+ dependencies = [
286
+ "proc-macro2",
287
+ "quote",
288
+ "syn 2.0.100",
289
+ ]
290
+
258
291
  [[package]]
259
292
  name = "atomic"
260
293
  version = "0.5.3"
261
294
  source = "registry+https://github.com/rust-lang/crates.io-index"
262
295
  checksum = "c59bdb34bc650a32731b31bd8f0829cc15d24a708ee31559e0bb34f2bc320cba"
263
296
 
297
+ [[package]]
298
+ name = "atomic-waker"
299
+ version = "1.1.2"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
302
+
264
303
  [[package]]
265
304
  name = "autocfg"
266
305
  version = "1.4.0"
267
306
  source = "registry+https://github.com/rust-lang/crates.io-index"
268
307
  checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
269
308
 
309
+ [[package]]
310
+ name = "axum"
311
+ version = "0.7.9"
312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
313
+ checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f"
314
+ dependencies = [
315
+ "async-trait",
316
+ "axum-core",
317
+ "bytes",
318
+ "futures-util",
319
+ "http",
320
+ "http-body",
321
+ "http-body-util",
322
+ "itoa",
323
+ "matchit",
324
+ "memchr",
325
+ "mime",
326
+ "percent-encoding",
327
+ "pin-project-lite",
328
+ "rustversion",
329
+ "serde",
330
+ "sync_wrapper",
331
+ "tower 0.5.2",
332
+ "tower-layer",
333
+ "tower-service",
334
+ ]
335
+
336
+ [[package]]
337
+ name = "axum-core"
338
+ version = "0.4.5"
339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
340
+ checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199"
341
+ dependencies = [
342
+ "async-trait",
343
+ "bytes",
344
+ "futures-util",
345
+ "http",
346
+ "http-body",
347
+ "http-body-util",
348
+ "mime",
349
+ "pin-project-lite",
350
+ "rustversion",
351
+ "sync_wrapper",
352
+ "tower-layer",
353
+ "tower-service",
354
+ ]
355
+
270
356
  [[package]]
271
357
  name = "backtrace"
272
358
  version = "0.3.74"
@@ -291,6 +377,12 @@ dependencies = [
291
377
  "backtrace",
292
378
  ]
293
379
 
380
+ [[package]]
381
+ name = "base64"
382
+ version = "0.21.7"
383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
384
+ checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
385
+
294
386
  [[package]]
295
387
  name = "base64"
296
388
  version = "0.22.1"
@@ -639,6 +731,45 @@ dependencies = [
639
731
  "windows-sys 0.59.0",
640
732
  ]
641
733
 
734
+ [[package]]
735
+ name = "console-api"
736
+ version = "0.8.1"
737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
738
+ checksum = "8030735ecb0d128428b64cd379809817e620a40e5001c54465b99ec5feec2857"
739
+ dependencies = [
740
+ "futures-core",
741
+ "prost 0.13.5",
742
+ "prost-types",
743
+ "tonic",
744
+ "tracing-core",
745
+ ]
746
+
747
+ [[package]]
748
+ name = "console-subscriber"
749
+ version = "0.4.1"
750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
751
+ checksum = "6539aa9c6a4cd31f4b1c040f860a1eac9aa80e7df6b05d506a6e7179936d6a01"
752
+ dependencies = [
753
+ "console-api",
754
+ "crossbeam-channel",
755
+ "crossbeam-utils",
756
+ "futures-task",
757
+ "hdrhistogram",
758
+ "humantime",
759
+ "hyper-util",
760
+ "prost 0.13.5",
761
+ "prost-types",
762
+ "serde",
763
+ "serde_json",
764
+ "thread_local",
765
+ "tokio",
766
+ "tokio-stream",
767
+ "tonic",
768
+ "tracing",
769
+ "tracing-core",
770
+ "tracing-subscriber",
771
+ ]
772
+
642
773
  [[package]]
643
774
  name = "console_error_panic_hook"
644
775
  version = "0.1.7"
@@ -690,7 +821,7 @@ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
690
821
 
691
822
  [[package]]
692
823
  name = "core_tester"
693
- version = "0.3.0-pre.1"
824
+ version = "0.3.0-pre.3"
694
825
  dependencies = [
695
826
  "anyhow",
696
827
  "assert_cmd",
@@ -1666,6 +1797,25 @@ version = "0.3.2"
1666
1797
  source = "registry+https://github.com/rust-lang/crates.io-index"
1667
1798
  checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
1668
1799
 
1800
+ [[package]]
1801
+ name = "h2"
1802
+ version = "0.4.12"
1803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1804
+ checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386"
1805
+ dependencies = [
1806
+ "atomic-waker",
1807
+ "bytes",
1808
+ "fnv",
1809
+ "futures-core",
1810
+ "futures-sink",
1811
+ "http",
1812
+ "indexmap 2.11.1",
1813
+ "slab",
1814
+ "tokio",
1815
+ "tokio-util",
1816
+ "tracing",
1817
+ ]
1818
+
1669
1819
  [[package]]
1670
1820
  name = "half"
1671
1821
  version = "2.5.0"
@@ -1700,6 +1850,19 @@ dependencies = [
1700
1850
  "hashbrown 0.15.2",
1701
1851
  ]
1702
1852
 
1853
+ [[package]]
1854
+ name = "hdrhistogram"
1855
+ version = "7.5.4"
1856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1857
+ checksum = "765c9198f173dd59ce26ff9f95ef0aafd0a0fe01fb9d72841bc5066a4c06511d"
1858
+ dependencies = [
1859
+ "base64 0.21.7",
1860
+ "byteorder",
1861
+ "flate2",
1862
+ "nom",
1863
+ "num-traits",
1864
+ ]
1865
+
1703
1866
  [[package]]
1704
1867
  name = "heck"
1705
1868
  version = "0.5.0"
@@ -1744,6 +1907,104 @@ dependencies = [
1744
1907
  "itoa",
1745
1908
  ]
1746
1909
 
1910
+ [[package]]
1911
+ name = "http-body"
1912
+ version = "1.0.1"
1913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1914
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1915
+ dependencies = [
1916
+ "bytes",
1917
+ "http",
1918
+ ]
1919
+
1920
+ [[package]]
1921
+ name = "http-body-util"
1922
+ version = "0.1.3"
1923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1924
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1925
+ dependencies = [
1926
+ "bytes",
1927
+ "futures-core",
1928
+ "http",
1929
+ "http-body",
1930
+ "pin-project-lite",
1931
+ ]
1932
+
1933
+ [[package]]
1934
+ name = "httparse"
1935
+ version = "1.10.1"
1936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1937
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1938
+
1939
+ [[package]]
1940
+ name = "httpdate"
1941
+ version = "1.0.3"
1942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1943
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1944
+
1945
+ [[package]]
1946
+ name = "humantime"
1947
+ version = "2.3.0"
1948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1949
+ checksum = "135b12329e5e3ce057a9f972339ea52bc954fe1e9358ef27f95e89716fbc5424"
1950
+
1951
+ [[package]]
1952
+ name = "hyper"
1953
+ version = "1.7.0"
1954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1955
+ checksum = "eb3aa54a13a0dfe7fbe3a59e0c76093041720fdc77b110cc0fc260fafb4dc51e"
1956
+ dependencies = [
1957
+ "atomic-waker",
1958
+ "bytes",
1959
+ "futures-channel",
1960
+ "futures-core",
1961
+ "h2",
1962
+ "http",
1963
+ "http-body",
1964
+ "httparse",
1965
+ "httpdate",
1966
+ "itoa",
1967
+ "pin-project-lite",
1968
+ "pin-utils",
1969
+ "smallvec",
1970
+ "tokio",
1971
+ "want",
1972
+ ]
1973
+
1974
+ [[package]]
1975
+ name = "hyper-timeout"
1976
+ version = "0.5.2"
1977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1978
+ checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0"
1979
+ dependencies = [
1980
+ "hyper",
1981
+ "hyper-util",
1982
+ "pin-project-lite",
1983
+ "tokio",
1984
+ "tower-service",
1985
+ ]
1986
+
1987
+ [[package]]
1988
+ name = "hyper-util"
1989
+ version = "0.1.17"
1990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1991
+ checksum = "3c6995591a8f1380fcb4ba966a252a4b29188d51d2b89e3a252f5305be65aea8"
1992
+ dependencies = [
1993
+ "bytes",
1994
+ "futures-channel",
1995
+ "futures-core",
1996
+ "futures-util",
1997
+ "http",
1998
+ "http-body",
1999
+ "hyper",
2000
+ "libc",
2001
+ "pin-project-lite",
2002
+ "socket2 0.6.0",
2003
+ "tokio",
2004
+ "tower-service",
2005
+ "tracing",
2006
+ ]
2007
+
1747
2008
  [[package]]
1748
2009
  name = "iana-time-zone"
1749
2010
  version = "0.1.62"
@@ -2278,7 +2539,7 @@ dependencies = [
2278
2539
 
2279
2540
  [[package]]
2280
2541
  name = "limbo_completion"
2281
- version = "0.3.0-pre.1"
2542
+ version = "0.3.0-pre.3"
2282
2543
  dependencies = [
2283
2544
  "mimalloc",
2284
2545
  "turso_ext",
@@ -2286,7 +2547,7 @@ dependencies = [
2286
2547
 
2287
2548
  [[package]]
2288
2549
  name = "limbo_crypto"
2289
- version = "0.3.0-pre.1"
2550
+ version = "0.3.0-pre.3"
2290
2551
  dependencies = [
2291
2552
  "blake3",
2292
2553
  "data-encoding",
@@ -2299,7 +2560,7 @@ dependencies = [
2299
2560
 
2300
2561
  [[package]]
2301
2562
  name = "limbo_csv"
2302
- version = "0.3.0-pre.1"
2563
+ version = "0.3.0-pre.3"
2303
2564
  dependencies = [
2304
2565
  "csv",
2305
2566
  "mimalloc",
@@ -2309,7 +2570,7 @@ dependencies = [
2309
2570
 
2310
2571
  [[package]]
2311
2572
  name = "limbo_fuzzy"
2312
- version = "0.3.0-pre.1"
2573
+ version = "0.3.0-pre.3"
2313
2574
  dependencies = [
2314
2575
  "mimalloc",
2315
2576
  "turso_ext",
@@ -2317,7 +2578,7 @@ dependencies = [
2317
2578
 
2318
2579
  [[package]]
2319
2580
  name = "limbo_ipaddr"
2320
- version = "0.3.0-pre.1"
2581
+ version = "0.3.0-pre.3"
2321
2582
  dependencies = [
2322
2583
  "ipnetwork",
2323
2584
  "mimalloc",
@@ -2326,7 +2587,7 @@ dependencies = [
2326
2587
 
2327
2588
  [[package]]
2328
2589
  name = "limbo_percentile"
2329
- version = "0.3.0-pre.1"
2590
+ version = "0.3.0-pre.3"
2330
2591
  dependencies = [
2331
2592
  "mimalloc",
2332
2593
  "turso_ext",
@@ -2334,7 +2595,7 @@ dependencies = [
2334
2595
 
2335
2596
  [[package]]
2336
2597
  name = "limbo_regexp"
2337
- version = "0.3.0-pre.1"
2598
+ version = "0.3.0-pre.3"
2338
2599
  dependencies = [
2339
2600
  "mimalloc",
2340
2601
  "regex",
@@ -2343,7 +2604,7 @@ dependencies = [
2343
2604
 
2344
2605
  [[package]]
2345
2606
  name = "limbo_sim"
2346
- version = "0.3.0-pre.1"
2607
+ version = "0.3.0-pre.3"
2347
2608
  dependencies = [
2348
2609
  "anyhow",
2349
2610
  "bitflags 2.9.4",
@@ -2379,7 +2640,7 @@ dependencies = [
2379
2640
 
2380
2641
  [[package]]
2381
2642
  name = "limbo_sqlite_test_ext"
2382
- version = "0.3.0-pre.1"
2643
+ version = "0.3.0-pre.3"
2383
2644
  dependencies = [
2384
2645
  "cc",
2385
2646
  ]
@@ -2459,6 +2720,12 @@ dependencies = [
2459
2720
  "regex-automata",
2460
2721
  ]
2461
2722
 
2723
+ [[package]]
2724
+ name = "matchit"
2725
+ version = "0.7.3"
2726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2727
+ checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
2728
+
2462
2729
  [[package]]
2463
2730
  name = "md-5"
2464
2731
  version = "0.10.6"
@@ -2548,6 +2815,12 @@ dependencies = [
2548
2815
  "libmimalloc-sys",
2549
2816
  ]
2550
2817
 
2818
+ [[package]]
2819
+ name = "mime"
2820
+ version = "0.3.17"
2821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2822
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2823
+
2551
2824
  [[package]]
2552
2825
  name = "minimad"
2553
2826
  version = "0.13.1"
@@ -2557,6 +2830,12 @@ dependencies = [
2557
2830
  "once_cell",
2558
2831
  ]
2559
2832
 
2833
+ [[package]]
2834
+ name = "minimal-lexical"
2835
+ version = "0.2.1"
2836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2837
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
2838
+
2560
2839
  [[package]]
2561
2840
  name = "miniz_oxide"
2562
2841
  version = "0.8.5"
@@ -2672,6 +2951,16 @@ version = "0.2.0"
2672
2951
  source = "registry+https://github.com/rust-lang/crates.io-index"
2673
2952
  checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
2674
2953
 
2954
+ [[package]]
2955
+ name = "nom"
2956
+ version = "7.1.3"
2957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2958
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
2959
+ dependencies = [
2960
+ "memchr",
2961
+ "minimal-lexical",
2962
+ ]
2963
+
2675
2964
  [[package]]
2676
2965
  name = "notify"
2677
2966
  version = "8.0.0"
@@ -2902,6 +3191,26 @@ dependencies = [
2902
3191
  "sha2",
2903
3192
  ]
2904
3193
 
3194
+ [[package]]
3195
+ name = "pin-project"
3196
+ version = "1.1.10"
3197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3198
+ checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
3199
+ dependencies = [
3200
+ "pin-project-internal",
3201
+ ]
3202
+
3203
+ [[package]]
3204
+ name = "pin-project-internal"
3205
+ version = "1.1.10"
3206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3207
+ checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
3208
+ dependencies = [
3209
+ "proc-macro2",
3210
+ "quote",
3211
+ "syn 2.0.100",
3212
+ ]
3213
+
2905
3214
  [[package]]
2906
3215
  name = "pin-project-lite"
2907
3216
  version = "0.2.16"
@@ -2926,7 +3235,7 @@ version = "1.7.1"
2926
3235
  source = "registry+https://github.com/rust-lang/crates.io-index"
2927
3236
  checksum = "eac26e981c03a6e53e0aee43c113e3202f5581d5360dae7bd2c70e800dd0451d"
2928
3237
  dependencies = [
2929
- "base64",
3238
+ "base64 0.22.1",
2930
3239
  "indexmap 2.11.1",
2931
3240
  "quick-xml 0.32.0",
2932
3241
  "serde",
@@ -3090,6 +3399,16 @@ dependencies = [
3090
3399
  "unicode-ident",
3091
3400
  ]
3092
3401
 
3402
+ [[package]]
3403
+ name = "prost"
3404
+ version = "0.13.5"
3405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3406
+ checksum = "2796faa41db3ec313a31f7624d9286acf277b52de526150b7e69f3debf891ee5"
3407
+ dependencies = [
3408
+ "bytes",
3409
+ "prost-derive 0.13.5",
3410
+ ]
3411
+
3093
3412
  [[package]]
3094
3413
  name = "prost"
3095
3414
  version = "0.14.1"
@@ -3097,7 +3416,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
3097
3416
  checksum = "7231bd9b3d3d33c86b58adbac74b5ec0ad9f496b19d22801d773636feaa95f3d"
3098
3417
  dependencies = [
3099
3418
  "bytes",
3100
- "prost-derive",
3419
+ "prost-derive 0.14.1",
3420
+ ]
3421
+
3422
+ [[package]]
3423
+ name = "prost-derive"
3424
+ version = "0.13.5"
3425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3426
+ checksum = "8a56d757972c98b346a9b766e3f02746cde6dd1cd1d1d563472929fdd74bec4d"
3427
+ dependencies = [
3428
+ "anyhow",
3429
+ "itertools 0.14.0",
3430
+ "proc-macro2",
3431
+ "quote",
3432
+ "syn 2.0.100",
3101
3433
  ]
3102
3434
 
3103
3435
  [[package]]
@@ -3113,9 +3445,18 @@ dependencies = [
3113
3445
  "syn 2.0.100",
3114
3446
  ]
3115
3447
 
3448
+ [[package]]
3449
+ name = "prost-types"
3450
+ version = "0.13.5"
3451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3452
+ checksum = "52c2c1bf36ddb1a1c396b3601a3cec27c2462e45f07c386894ec3ccf5332bd16"
3453
+ dependencies = [
3454
+ "prost 0.13.5",
3455
+ ]
3456
+
3116
3457
  [[package]]
3117
3458
  name = "py-turso"
3118
- version = "0.3.0-pre.1"
3459
+ version = "0.3.0-pre.3"
3119
3460
  dependencies = [
3120
3461
  "anyhow",
3121
3462
  "pyo3",
@@ -3818,6 +4159,16 @@ dependencies = [
3818
4159
  "serde",
3819
4160
  ]
3820
4161
 
4162
+ [[package]]
4163
+ name = "socket2"
4164
+ version = "0.5.10"
4165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4166
+ checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
4167
+ dependencies = [
4168
+ "libc",
4169
+ "windows-sys 0.52.0",
4170
+ ]
4171
+
3821
4172
  [[package]]
3822
4173
  name = "socket2"
3823
4174
  version = "0.6.0"
@@ -3842,7 +4193,7 @@ checksum = "d372029cb5195f9ab4e4b9aef550787dce78b124fcaee8d82519925defcd6f0d"
3842
4193
 
3843
4194
  [[package]]
3844
4195
  name = "sql_generation"
3845
- version = "0.3.0-pre.1"
4196
+ version = "0.3.0-pre.3"
3846
4197
  dependencies = [
3847
4198
  "anarchist-readable-name-generator-lib 0.2.0",
3848
4199
  "anyhow",
@@ -3854,6 +4205,7 @@ dependencies = [
3854
4205
  "rand_chacha 0.9.0",
3855
4206
  "schemars 1.0.4",
3856
4207
  "serde",
4208
+ "strum",
3857
4209
  "tracing",
3858
4210
  "turso_core",
3859
4211
  "turso_parser",
@@ -3983,6 +4335,12 @@ dependencies = [
3983
4335
  "unicode-ident",
3984
4336
  ]
3985
4337
 
4338
+ [[package]]
4339
+ name = "sync_wrapper"
4340
+ version = "1.0.2"
4341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4342
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
4343
+
3986
4344
  [[package]]
3987
4345
  name = "synstructure"
3988
4346
  version = "0.13.1"
@@ -4223,8 +4581,9 @@ dependencies = [
4223
4581
  "pin-project-lite",
4224
4582
  "signal-hook-registry",
4225
4583
  "slab",
4226
- "socket2",
4584
+ "socket2 0.6.0",
4227
4585
  "tokio-macros",
4586
+ "tracing",
4228
4587
  "windows-sys 0.59.0",
4229
4588
  ]
4230
4589
 
@@ -4239,6 +4598,30 @@ dependencies = [
4239
4598
  "syn 2.0.100",
4240
4599
  ]
4241
4600
 
4601
+ [[package]]
4602
+ name = "tokio-stream"
4603
+ version = "0.1.17"
4604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4605
+ checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047"
4606
+ dependencies = [
4607
+ "futures-core",
4608
+ "pin-project-lite",
4609
+ "tokio",
4610
+ ]
4611
+
4612
+ [[package]]
4613
+ name = "tokio-util"
4614
+ version = "0.7.16"
4615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4616
+ checksum = "14307c986784f72ef81c89db7d9e28d6ac26d16213b109ea501696195e6e3ce5"
4617
+ dependencies = [
4618
+ "bytes",
4619
+ "futures-core",
4620
+ "futures-sink",
4621
+ "pin-project-lite",
4622
+ "tokio",
4623
+ ]
4624
+
4242
4625
  [[package]]
4243
4626
  name = "toml"
4244
4627
  version = "0.8.22"
@@ -4281,6 +4664,82 @@ version = "0.1.1"
4281
4664
  source = "registry+https://github.com/rust-lang/crates.io-index"
4282
4665
  checksum = "bfb942dfe1d8e29a7ee7fcbde5bd2b9a25fb89aa70caea2eba3bee836ff41076"
4283
4666
 
4667
+ [[package]]
4668
+ name = "tonic"
4669
+ version = "0.12.3"
4670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4671
+ checksum = "877c5b330756d856ffcc4553ab34a5684481ade925ecc54bcd1bf02b1d0d4d52"
4672
+ dependencies = [
4673
+ "async-stream",
4674
+ "async-trait",
4675
+ "axum",
4676
+ "base64 0.22.1",
4677
+ "bytes",
4678
+ "h2",
4679
+ "http",
4680
+ "http-body",
4681
+ "http-body-util",
4682
+ "hyper",
4683
+ "hyper-timeout",
4684
+ "hyper-util",
4685
+ "percent-encoding",
4686
+ "pin-project",
4687
+ "prost 0.13.5",
4688
+ "socket2 0.5.10",
4689
+ "tokio",
4690
+ "tokio-stream",
4691
+ "tower 0.4.13",
4692
+ "tower-layer",
4693
+ "tower-service",
4694
+ "tracing",
4695
+ ]
4696
+
4697
+ [[package]]
4698
+ name = "tower"
4699
+ version = "0.4.13"
4700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4701
+ checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
4702
+ dependencies = [
4703
+ "futures-core",
4704
+ "futures-util",
4705
+ "indexmap 1.9.3",
4706
+ "pin-project",
4707
+ "pin-project-lite",
4708
+ "rand 0.8.5",
4709
+ "slab",
4710
+ "tokio",
4711
+ "tokio-util",
4712
+ "tower-layer",
4713
+ "tower-service",
4714
+ "tracing",
4715
+ ]
4716
+
4717
+ [[package]]
4718
+ name = "tower"
4719
+ version = "0.5.2"
4720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4721
+ checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
4722
+ dependencies = [
4723
+ "futures-core",
4724
+ "futures-util",
4725
+ "pin-project-lite",
4726
+ "sync_wrapper",
4727
+ "tower-layer",
4728
+ "tower-service",
4729
+ ]
4730
+
4731
+ [[package]]
4732
+ name = "tower-layer"
4733
+ version = "0.3.3"
4734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4735
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
4736
+
4737
+ [[package]]
4738
+ name = "tower-service"
4739
+ version = "0.3.3"
4740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4741
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
4742
+
4284
4743
  [[package]]
4285
4744
  name = "tracing"
4286
4745
  version = "0.1.41"
@@ -4354,21 +4813,29 @@ dependencies = [
4354
4813
  "tracing-log",
4355
4814
  ]
4356
4815
 
4816
+ [[package]]
4817
+ name = "try-lock"
4818
+ version = "0.2.5"
4819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4820
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
4821
+
4357
4822
  [[package]]
4358
4823
  name = "turso"
4359
- version = "0.3.0-pre.1"
4824
+ version = "0.3.0-pre.3"
4360
4825
  dependencies = [
4361
4826
  "rand 0.9.2",
4362
4827
  "rand_chacha 0.9.0",
4363
4828
  "tempfile",
4364
4829
  "thiserror 2.0.16",
4365
4830
  "tokio",
4831
+ "tracing",
4832
+ "tracing-subscriber",
4366
4833
  "turso_core",
4367
4834
  ]
4368
4835
 
4369
4836
  [[package]]
4370
4837
  name = "turso-java"
4371
- version = "0.3.0-pre.1"
4838
+ version = "0.3.0-pre.3"
4372
4839
  dependencies = [
4373
4840
  "jni",
4374
4841
  "thiserror 2.0.16",
@@ -4377,7 +4844,7 @@ dependencies = [
4377
4844
 
4378
4845
  [[package]]
4379
4846
  name = "turso_cli"
4380
- version = "0.3.0-pre.1"
4847
+ version = "0.3.0-pre.3"
4381
4848
  dependencies = [
4382
4849
  "anyhow",
4383
4850
  "cfg-if",
@@ -4413,7 +4880,7 @@ dependencies = [
4413
4880
 
4414
4881
  [[package]]
4415
4882
  name = "turso_core"
4416
- version = "0.3.0-pre.1"
4883
+ version = "0.3.0-pre.3"
4417
4884
  dependencies = [
4418
4885
  "aegis",
4419
4886
  "aes",
@@ -4450,6 +4917,7 @@ dependencies = [
4450
4917
  "rand_chacha 0.9.0",
4451
4918
  "regex",
4452
4919
  "regex-syntax",
4920
+ "roaring",
4453
4921
  "rstest",
4454
4922
  "rusqlite",
4455
4923
  "rustix 1.0.7",
@@ -4472,7 +4940,7 @@ dependencies = [
4472
4940
 
4473
4941
  [[package]]
4474
4942
  name = "turso_dart"
4475
- version = "0.3.0-pre.1"
4943
+ version = "0.3.0-pre.3"
4476
4944
  dependencies = [
4477
4945
  "flutter_rust_bridge",
4478
4946
  "turso_core",
@@ -4480,7 +4948,7 @@ dependencies = [
4480
4948
 
4481
4949
  [[package]]
4482
4950
  name = "turso_ext"
4483
- version = "0.3.0-pre.1"
4951
+ version = "0.3.0-pre.3"
4484
4952
  dependencies = [
4485
4953
  "chrono",
4486
4954
  "getrandom 0.3.2",
@@ -4489,7 +4957,7 @@ dependencies = [
4489
4957
 
4490
4958
  [[package]]
4491
4959
  name = "turso_ext_tests"
4492
- version = "0.3.0-pre.1"
4960
+ version = "0.3.0-pre.3"
4493
4961
  dependencies = [
4494
4962
  "env_logger 0.11.7",
4495
4963
  "lazy_static",
@@ -4500,7 +4968,7 @@ dependencies = [
4500
4968
 
4501
4969
  [[package]]
4502
4970
  name = "turso_macros"
4503
- version = "0.3.0-pre.1"
4971
+ version = "0.3.0-pre.3"
4504
4972
  dependencies = [
4505
4973
  "proc-macro2",
4506
4974
  "quote",
@@ -4509,7 +4977,7 @@ dependencies = [
4509
4977
 
4510
4978
  [[package]]
4511
4979
  name = "turso_node"
4512
- version = "0.3.0-pre.1"
4980
+ version = "0.3.0-pre.3"
4513
4981
  dependencies = [
4514
4982
  "chrono",
4515
4983
  "napi",
@@ -4522,7 +4990,7 @@ dependencies = [
4522
4990
 
4523
4991
  [[package]]
4524
4992
  name = "turso_parser"
4525
- version = "0.3.0-pre.1"
4993
+ version = "0.3.0-pre.3"
4526
4994
  dependencies = [
4527
4995
  "bitflags 2.9.4",
4528
4996
  "criterion",
@@ -4538,7 +5006,7 @@ dependencies = [
4538
5006
 
4539
5007
  [[package]]
4540
5008
  name = "turso_sqlite3"
4541
- version = "0.3.0-pre.1"
5009
+ version = "0.3.0-pre.3"
4542
5010
  dependencies = [
4543
5011
  "env_logger 0.11.7",
4544
5012
  "libc",
@@ -4551,12 +5019,13 @@ dependencies = [
4551
5019
 
4552
5020
  [[package]]
4553
5021
  name = "turso_stress"
4554
- version = "0.3.0-pre.1"
5022
+ version = "0.3.0-pre.3"
4555
5023
  dependencies = [
4556
5024
  "anarchist-readable-name-generator-lib 0.1.2",
4557
5025
  "antithesis_sdk",
4558
5026
  "clap",
4559
5027
  "hex",
5028
+ "rusqlite",
4560
5029
  "tempfile",
4561
5030
  "tokio",
4562
5031
  "tracing",
@@ -4567,15 +5036,15 @@ dependencies = [
4567
5036
 
4568
5037
  [[package]]
4569
5038
  name = "turso_sync_engine"
4570
- version = "0.3.0-pre.1"
5039
+ version = "0.3.0-pre.3"
4571
5040
  dependencies = [
4572
- "base64",
5041
+ "base64 0.22.1",
4573
5042
  "bytes",
4574
5043
  "ctor 0.4.2",
4575
5044
  "futures",
4576
5045
  "genawaiter",
4577
5046
  "http",
4578
- "prost",
5047
+ "prost 0.14.1",
4579
5048
  "rand 0.9.2",
4580
5049
  "rand_chacha 0.9.0",
4581
5050
  "roaring",
@@ -4594,7 +5063,7 @@ dependencies = [
4594
5063
 
4595
5064
  [[package]]
4596
5065
  name = "turso_sync_js"
4597
- version = "0.3.0-pre.1"
5066
+ version = "0.3.0-pre.3"
4598
5067
  dependencies = [
4599
5068
  "genawaiter",
4600
5069
  "napi",
@@ -4609,7 +5078,7 @@ dependencies = [
4609
5078
 
4610
5079
  [[package]]
4611
5080
  name = "turso_whopper"
4612
- version = "0.3.0-pre.1"
5081
+ version = "0.3.0-pre.3"
4613
5082
  dependencies = [
4614
5083
  "anyhow",
4615
5084
  "clap",
@@ -4820,6 +5289,15 @@ dependencies = [
4820
5289
  "winapi-util",
4821
5290
  ]
4822
5291
 
5292
+ [[package]]
5293
+ name = "want"
5294
+ version = "0.3.1"
5295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5296
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
5297
+ dependencies = [
5298
+ "try-lock",
5299
+ ]
5300
+
4823
5301
  [[package]]
4824
5302
  name = "wasi"
4825
5303
  version = "0.11.0+wasi-snapshot-preview1"
@@ -5199,6 +5677,7 @@ name = "write-throughput"
5199
5677
  version = "0.1.0"
5200
5678
  dependencies = [
5201
5679
  "clap",
5680
+ "console-subscriber",
5202
5681
  "futures",
5203
5682
  "tokio",
5204
5683
  "tracing-subscriber",