pyturso 0.4.0rc17__tar.gz → 0.4.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (286) hide show
  1. {pyturso-0.4.0rc17 → pyturso-0.4.1}/Cargo.lock +457 -41
  2. {pyturso-0.4.0rc17 → pyturso-0.4.1}/Cargo.toml +18 -21
  3. {pyturso-0.4.0rc17 → pyturso-0.4.1}/PKG-INFO +2 -2
  4. {pyturso-0.4.0rc17 → pyturso-0.4.1}/bindings/python/Cargo.toml +3 -0
  5. {pyturso-0.4.0rc17 → pyturso-0.4.1}/bindings/python/README.md +1 -1
  6. {pyturso-0.4.0rc17 → pyturso-0.4.1}/bindings/python/py-bindings-sync.mdx +10 -6
  7. {pyturso-0.4.0rc17 → pyturso-0.4.1}/bindings/python/src/lib.rs +3 -2
  8. {pyturso-0.4.0rc17 → pyturso-0.4.1}/bindings/python/src/turso.rs +64 -20
  9. {pyturso-0.4.0rc17 → pyturso-0.4.1}/bindings/python/src/turso_sync.rs +81 -72
  10. {pyturso-0.4.0rc17 → pyturso-0.4.1}/bindings/python/tests/test_database.py +43 -1
  11. {pyturso-0.4.0rc17 → pyturso-0.4.1}/bindings/python/tests/test_database_aio.py +11 -2
  12. pyturso-0.4.1/bindings/python/tests/test_database_sync.py +234 -0
  13. pyturso-0.4.1/bindings/python/tests/test_database_sync_aio.py +185 -0
  14. pyturso-0.4.1/bindings/python/tests/utils.py +75 -0
  15. {pyturso-0.4.0rc17 → pyturso-0.4.1/bindings/python}/turso/__init__.py +2 -0
  16. {pyturso-0.4.0rc17 → pyturso-0.4.1/bindings/python}/turso/aio/sync/__init__.py +2 -0
  17. {pyturso-0.4.0rc17 → pyturso-0.4.1/bindings/python}/turso/lib.py +13 -0
  18. {pyturso-0.4.0rc17 → pyturso-0.4.1/bindings/python}/turso/lib_aio.py +2 -4
  19. {pyturso-0.4.0rc17 → pyturso-0.4.1}/bindings/python/turso/lib_sync.py +37 -22
  20. {pyturso-0.4.0rc17 → pyturso-0.4.1/bindings/python}/turso/lib_sync_aio.py +2 -2
  21. {pyturso-0.4.0rc17 → pyturso-0.4.1}/bindings/python/turso/sync/__init__.py +2 -0
  22. {pyturso-0.4.0rc17 → pyturso-0.4.1/bindings/python}/turso/worker.py +1 -0
  23. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/Cargo.toml +5 -0
  24. pyturso-0.4.1/core/assert.rs +70 -0
  25. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/benches/benchmark.rs +31 -22
  26. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/benches/json_benchmark.rs +6 -6
  27. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/benches/mvcc_benchmark.rs +4 -1
  28. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/benches/tpc_h_benchmark.rs +2 -2
  29. pyturso-0.4.1/core/busy.rs +416 -0
  30. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/error.rs +14 -4
  31. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/ext/dynamic.rs +1 -0
  32. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/ext/mod.rs +3 -1
  33. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/ext/vtab_xconnect.rs +30 -40
  34. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/fast_lock.rs +3 -2
  35. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/function.rs +159 -142
  36. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/functions/datetime.rs +6 -7
  37. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/functions/printf.rs +76 -32
  38. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/incremental/compiler.rs +18 -8
  39. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/incremental/cursor.rs +2 -4
  40. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/incremental/operator.rs +9 -7
  41. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/incremental/project_operator.rs +1 -1
  42. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/incremental/view.rs +9 -0
  43. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/index_method/mod.rs +2 -2
  44. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/index_method/toy_vector_sparse_ivf.rs +4 -4
  45. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/io/completions.rs +260 -27
  46. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/io/generic.rs +1 -1
  47. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/io/io_uring.rs +65 -157
  48. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/io/memory.rs +4 -3
  49. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/io/mod.rs +125 -6
  50. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/io/unix.rs +5 -10
  51. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/io/windows.rs +1 -1
  52. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/json/jsonb.rs +6 -6
  53. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/json/mod.rs +101 -7
  54. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/lib.rs +292 -657
  55. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/mvcc/clock.rs +1 -1
  56. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/mvcc/cursor.rs +291 -367
  57. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/mvcc/database/checkpoint_state_machine.rs +59 -52
  58. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/mvcc/database/mod.rs +193 -32
  59. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/mvcc/database/tests.rs +39 -52
  60. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/mvcc/persistent_storage/logical_log.rs +10 -2
  61. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/pragma.rs +4 -0
  62. pyturso-0.4.1/core/pseudo.rs +33 -0
  63. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/schema.rs +122 -57
  64. pyturso-0.4.1/core/statement.rs +479 -0
  65. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/stats.rs +49 -60
  66. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/storage/btree.rs +1123 -1271
  67. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/storage/buffer_pool.rs +20 -24
  68. pyturso-0.4.1/core/storage/journal_mode.rs +84 -0
  69. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/storage/mod.rs +1 -0
  70. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/storage/page_cache.rs +248 -108
  71. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/storage/pager.rs +1818 -530
  72. pyturso-0.4.1/core/storage/slot_bitmap.rs +224 -0
  73. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/storage/sqlite3_ondisk.rs +171 -565
  74. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/storage/subjournal.rs +2 -2
  75. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/storage/wal.rs +806 -542
  76. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/translate/aggregation.rs +48 -35
  77. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/translate/alter.rs +58 -32
  78. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/translate/analyze.rs +7 -7
  79. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/translate/collate.rs +5 -1
  80. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/translate/compound_select.rs +4 -4
  81. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/translate/display.rs +5 -3
  82. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/translate/emitter.rs +99 -41
  83. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/translate/expr.rs +61 -8
  84. pyturso-0.4.1/core/translate/fkeys.rs +1924 -0
  85. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/translate/group_by.rs +7 -4
  86. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/translate/index.rs +12 -13
  87. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/translate/insert.rs +500 -386
  88. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/translate/logical.rs +5 -0
  89. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/translate/main_loop.rs +61 -19
  90. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/translate/mod.rs +2 -0
  91. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/translate/optimizer/join.rs +63 -63
  92. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/translate/optimizer/mod.rs +80 -15
  93. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/translate/optimizer/order.rs +53 -11
  94. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/translate/order_by.rs +16 -21
  95. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/translate/plan.rs +465 -40
  96. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/translate/planner.rs +1 -1
  97. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/translate/pragma.rs +17 -1
  98. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/translate/result_row.rs +7 -7
  99. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/translate/schema.rs +88 -80
  100. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/translate/select.rs +85 -52
  101. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/translate/trigger.rs +20 -1
  102. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/translate/trigger_exec.rs +0 -26
  103. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/translate/update.rs +30 -21
  104. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/translate/upsert.rs +54 -14
  105. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/translate/values.rs +4 -4
  106. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/translate/view.rs +19 -8
  107. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/translate/window.rs +6 -4
  108. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/types.rs +159 -84
  109. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/util.rs +92 -74
  110. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/vdbe/affinity.rs +13 -7
  111. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/vdbe/builder.rs +134 -58
  112. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/vdbe/execute.rs +647 -329
  113. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/vdbe/explain.rs +20 -22
  114. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/vdbe/hash_table.rs +4 -36
  115. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/vdbe/insn.rs +39 -30
  116. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/vdbe/mod.rs +49 -46
  117. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/vdbe/sorter.rs +222 -101
  118. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/vdbe/value.rs +64 -20
  119. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/vtab.rs +10 -6
  120. {pyturso-0.4.0rc17 → pyturso-0.4.1}/macros/src/lib.rs +1 -1
  121. {pyturso-0.4.0rc17 → pyturso-0.4.1}/macros/src/test.rs +13 -20
  122. {pyturso-0.4.0rc17 → pyturso-0.4.1}/parser/Cargo.toml +1 -0
  123. {pyturso-0.4.0rc17 → pyturso-0.4.1}/parser/src/ast/fmt.rs +5 -3
  124. {pyturso-0.4.0rc17 → pyturso-0.4.1}/parser/src/ast.rs +2 -0
  125. {pyturso-0.4.0rc17 → pyturso-0.4.1}/parser/src/error.rs +2 -0
  126. {pyturso-0.4.0rc17 → pyturso-0.4.1}/parser/src/lexer.rs +285 -646
  127. {pyturso-0.4.0rc17 → pyturso-0.4.1}/parser/src/parser.rs +266 -211
  128. {pyturso-0.4.0rc17 → pyturso-0.4.1}/parser/src/token.rs +19 -0
  129. {pyturso-0.4.0rc17 → pyturso-0.4.1}/sdk-kit/Cargo.toml +5 -1
  130. {pyturso-0.4.0rc17 → pyturso-0.4.1}/sdk-kit/src/bindings.rs +31 -10
  131. {pyturso-0.4.0rc17 → pyturso-0.4.1}/sdk-kit/src/capi.rs +116 -31
  132. {pyturso-0.4.0rc17 → pyturso-0.4.1}/sdk-kit/src/lib.rs +1 -4
  133. {pyturso-0.4.0rc17 → pyturso-0.4.1}/sdk-kit/src/rsapi.rs +327 -244
  134. {pyturso-0.4.0rc17 → pyturso-0.4.1}/sdk-kit/turso.h +24 -2
  135. {pyturso-0.4.0rc17 → pyturso-0.4.1}/sdk-kit-macros/Cargo.toml +1 -0
  136. {pyturso-0.4.0rc17 → pyturso-0.4.1}/sync/engine/Cargo.toml +1 -1
  137. {pyturso-0.4.0rc17 → pyturso-0.4.1}/sync/engine/src/database_sync_engine.rs +75 -67
  138. {pyturso-0.4.0rc17 → pyturso-0.4.1}/sync/engine/src/database_sync_engine_io.rs +1 -0
  139. {pyturso-0.4.0rc17 → pyturso-0.4.1}/sync/engine/src/database_sync_lazy_storage.rs +96 -47
  140. {pyturso-0.4.0rc17 → pyturso-0.4.1}/sync/engine/src/database_sync_operations.rs +188 -143
  141. {pyturso-0.4.0rc17 → pyturso-0.4.1}/sync/engine/src/database_tape.rs +45 -29
  142. {pyturso-0.4.0rc17 → pyturso-0.4.1}/sync/engine/src/errors.rs +0 -7
  143. {pyturso-0.4.0rc17 → pyturso-0.4.1}/sync/engine/src/io_operations.rs +1 -1
  144. {pyturso-0.4.0rc17 → pyturso-0.4.1}/sync/engine/src/server_proto.rs +9 -0
  145. {pyturso-0.4.0rc17 → pyturso-0.4.1}/sync/engine/src/sparse_io.rs +1 -1
  146. {pyturso-0.4.0rc17 → pyturso-0.4.1}/sync/engine/src/types.rs +61 -3
  147. {pyturso-0.4.0rc17 → pyturso-0.4.1}/sync/sdk-kit/Cargo.toml +1 -0
  148. {pyturso-0.4.0rc17 → pyturso-0.4.1}/sync/sdk-kit/src/bindings.rs +21 -23
  149. {pyturso-0.4.0rc17 → pyturso-0.4.1}/sync/sdk-kit/src/capi.rs +0 -15
  150. {pyturso-0.4.0rc17 → pyturso-0.4.1}/sync/sdk-kit/src/rsapi.rs +76 -70
  151. {pyturso-0.4.0rc17 → pyturso-0.4.1}/sync/sdk-kit/src/sync_engine_io.rs +16 -25
  152. {pyturso-0.4.0rc17 → pyturso-0.4.1}/sync/sdk-kit/src/turso_async_operation.rs +62 -40
  153. {pyturso-0.4.0rc17 → pyturso-0.4.1}/sync/sdk-kit/turso_sync.h +6 -11
  154. {pyturso-0.4.0rc17/bindings/python → pyturso-0.4.1}/turso/__init__.py +2 -0
  155. {pyturso-0.4.0rc17/bindings/python → pyturso-0.4.1}/turso/aio/sync/__init__.py +2 -0
  156. {pyturso-0.4.0rc17/bindings/python → pyturso-0.4.1}/turso/lib.py +13 -0
  157. {pyturso-0.4.0rc17/bindings/python → pyturso-0.4.1}/turso/lib_aio.py +2 -4
  158. {pyturso-0.4.0rc17 → pyturso-0.4.1}/turso/lib_sync.py +37 -22
  159. {pyturso-0.4.0rc17/bindings/python → pyturso-0.4.1}/turso/lib_sync_aio.py +2 -2
  160. {pyturso-0.4.0rc17 → pyturso-0.4.1}/turso/sync/__init__.py +2 -0
  161. {pyturso-0.4.0rc17/bindings/python → pyturso-0.4.1}/turso/worker.py +1 -0
  162. pyturso-0.4.0rc17/bindings/python/tests/test_database_sync.py +0 -241
  163. pyturso-0.4.0rc17/bindings/python/tests/test_database_sync_aio.py +0 -248
  164. pyturso-0.4.0rc17/bindings/rust/Cargo.toml +0 -31
  165. pyturso-0.4.0rc17/bindings/rust/README.md +0 -158
  166. pyturso-0.4.0rc17/bindings/rust/examples/example.rs +0 -49
  167. pyturso-0.4.0rc17/bindings/rust/examples/example_struct.rs +0 -60
  168. pyturso-0.4.0rc17/bindings/rust/src/lib.rs +0 -868
  169. pyturso-0.4.0rc17/bindings/rust/src/params.rs +0 -315
  170. pyturso-0.4.0rc17/bindings/rust/src/rows.rs +0 -129
  171. pyturso-0.4.0rc17/bindings/rust/src/transaction.rs +0 -519
  172. pyturso-0.4.0rc17/bindings/rust/src/value.rs +0 -388
  173. pyturso-0.4.0rc17/bindings/rust/tests/integration_tests.rs +0 -502
  174. pyturso-0.4.0rc17/core/assert.rs +0 -25
  175. pyturso-0.4.0rc17/core/pseudo.rs +0 -39
  176. pyturso-0.4.0rc17/core/storage/slot_bitmap.rs +0 -626
  177. pyturso-0.4.0rc17/core/translate/fkeys.rs +0 -938
  178. {pyturso-0.4.0rc17 → pyturso-0.4.1}/bindings/python/build.rs +0 -0
  179. {pyturso-0.4.0rc17 → pyturso-0.4.1}/bindings/python/example.py +0 -0
  180. {pyturso-0.4.0rc17 → pyturso-0.4.1}/bindings/python/py-bindings-db-aio.mdx +0 -0
  181. {pyturso-0.4.0rc17 → pyturso-0.4.1}/bindings/python/py-bindings-db.mdx +0 -0
  182. {pyturso-0.4.0rc17 → pyturso-0.4.1}/bindings/python/py-bindings-sync-aio.mdx +0 -0
  183. {pyturso-0.4.0rc17 → pyturso-0.4.1}/bindings/python/py-bindings-tests-aio.mdx +0 -0
  184. {pyturso-0.4.0rc17 → pyturso-0.4.1}/bindings/python/py-bindings-tests.mdx +0 -0
  185. {pyturso-0.4.0rc17 → pyturso-0.4.1}/bindings/python/requirements-dev.txt +0 -0
  186. {pyturso-0.4.0rc17 → pyturso-0.4.1}/bindings/python/requirements.txt +0 -0
  187. {pyturso-0.4.0rc17 → pyturso-0.4.1}/bindings/python/tests/__init__.py +0 -0
  188. {pyturso-0.4.0rc17 → pyturso-0.4.1}/bindings/python/turso/aio/__init__.py +0 -0
  189. {pyturso-0.4.0rc17 → pyturso-0.4.1}/bindings/python/turso/py.typed +0 -0
  190. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/build.rs +0 -0
  191. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/functions/mod.rs +0 -0
  192. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/functions/strftime.rs +0 -0
  193. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/incremental/aggregate_operator.rs +0 -0
  194. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/incremental/dbsp.rs +0 -0
  195. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/incremental/expr_compiler.rs +0 -0
  196. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/incremental/filter_operator.rs +0 -0
  197. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/incremental/input_operator.rs +0 -0
  198. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/incremental/join_operator.rs +0 -0
  199. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/incremental/merge_operator.rs +0 -0
  200. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/incremental/mod.rs +0 -0
  201. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/incremental/persistence.rs +0 -0
  202. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/index_method/backing_btree.rs +0 -0
  203. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/info.rs +0 -0
  204. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/io/clock.rs +0 -0
  205. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/io/common.rs +0 -0
  206. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/io/vfs.rs +0 -0
  207. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/json/cache.rs +0 -0
  208. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/json/error.rs +0 -0
  209. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/json/ops.rs +0 -0
  210. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/json/path.rs +0 -0
  211. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/json/vtab.rs +0 -0
  212. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/mvcc/mod.rs +0 -0
  213. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/mvcc/persistent_storage/mod.rs +0 -0
  214. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/numeric/mod.rs +0 -0
  215. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/numeric/nonnan.rs +0 -0
  216. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/parameters.rs +0 -0
  217. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/series.rs +0 -0
  218. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/state_machine.rs +0 -0
  219. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/storage/checksum.rs +0 -0
  220. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/storage/database.rs +0 -0
  221. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/storage/encryption.rs +0 -0
  222. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/storage/state_machines.rs +0 -0
  223. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/time/internal.rs +0 -0
  224. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/time/mod.rs +0 -0
  225. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/translate/attach.rs +0 -0
  226. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/translate/delete.rs +0 -0
  227. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/translate/expression_index.rs +0 -0
  228. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/translate/integrity_check.rs +0 -0
  229. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/translate/optimizer/OPTIMIZER.md +0 -0
  230. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/translate/optimizer/access_method.rs +0 -0
  231. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/translate/optimizer/constraints.rs +0 -0
  232. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/translate/optimizer/cost.rs +0 -0
  233. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/translate/optimizer/lift_common_subexpressions.rs +0 -0
  234. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/translate/rollback.rs +0 -0
  235. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/translate/subquery.rs +0 -0
  236. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/translate/transaction.rs +0 -0
  237. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/uuid.rs +0 -0
  238. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/vdbe/bloom_filter.rs +0 -0
  239. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/vdbe/likeop.rs +0 -0
  240. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/vdbe/metrics.rs +0 -0
  241. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/vdbe/rowset.rs +0 -0
  242. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/vector/mod.rs +0 -0
  243. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/vector/operations/concat.rs +0 -0
  244. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/vector/operations/convert.rs +0 -0
  245. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/vector/operations/distance_cos.rs +0 -0
  246. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/vector/operations/distance_dot.rs +0 -0
  247. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/vector/operations/distance_l2.rs +0 -0
  248. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/vector/operations/jaccard.rs +0 -0
  249. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/vector/operations/mod.rs +0 -0
  250. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/vector/operations/serialize.rs +0 -0
  251. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/vector/operations/slice.rs +0 -0
  252. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/vector/operations/text.rs +0 -0
  253. {pyturso-0.4.0rc17 → pyturso-0.4.1}/core/vector/vector_types.rs +0 -0
  254. {pyturso-0.4.0rc17 → pyturso-0.4.1}/extensions/core/Cargo.toml +0 -0
  255. {pyturso-0.4.0rc17 → pyturso-0.4.1}/extensions/core/README.md +0 -0
  256. {pyturso-0.4.0rc17 → pyturso-0.4.1}/extensions/core/build.rs +0 -0
  257. {pyturso-0.4.0rc17 → pyturso-0.4.1}/extensions/core/src/functions.rs +0 -0
  258. {pyturso-0.4.0rc17 → pyturso-0.4.1}/extensions/core/src/lib.rs +0 -0
  259. {pyturso-0.4.0rc17 → pyturso-0.4.1}/extensions/core/src/types.rs +0 -0
  260. {pyturso-0.4.0rc17 → pyturso-0.4.1}/extensions/core/src/vfs_modules.rs +0 -0
  261. {pyturso-0.4.0rc17 → pyturso-0.4.1}/extensions/core/src/vtabs.rs +0 -0
  262. {pyturso-0.4.0rc17 → pyturso-0.4.1}/macros/Cargo.toml +0 -0
  263. {pyturso-0.4.0rc17 → pyturso-0.4.1}/macros/src/atomic_enum.rs +0 -0
  264. {pyturso-0.4.0rc17 → pyturso-0.4.1}/macros/src/ext/agg_derive.rs +0 -0
  265. {pyturso-0.4.0rc17 → pyturso-0.4.1}/macros/src/ext/match_ignore_ascii_case.rs +0 -0
  266. {pyturso-0.4.0rc17 → pyturso-0.4.1}/macros/src/ext/mod.rs +0 -0
  267. {pyturso-0.4.0rc17 → pyturso-0.4.1}/macros/src/ext/scalars.rs +0 -0
  268. {pyturso-0.4.0rc17 → pyturso-0.4.1}/macros/src/ext/vfs_derive.rs +0 -0
  269. {pyturso-0.4.0rc17 → pyturso-0.4.1}/macros/src/ext/vtab_derive.rs +0 -0
  270. {pyturso-0.4.0rc17 → pyturso-0.4.1}/parser/README.md +0 -0
  271. {pyturso-0.4.0rc17 → pyturso-0.4.1}/parser/benches/parser_benchmark.rs +0 -0
  272. {pyturso-0.4.0rc17 → pyturso-0.4.1}/parser/src/ast/check.rs +0 -0
  273. {pyturso-0.4.0rc17 → pyturso-0.4.1}/parser/src/lib.rs +0 -0
  274. {pyturso-0.4.0rc17 → pyturso-0.4.1}/pyproject.toml +0 -0
  275. {pyturso-0.4.0rc17 → pyturso-0.4.1}/sdk-kit/README.md +0 -0
  276. {pyturso-0.4.0rc17 → pyturso-0.4.1}/sdk-kit/bindgen.sh +0 -0
  277. {pyturso-0.4.0rc17 → pyturso-0.4.1}/sdk-kit/readme-sdk-kit.mdx +0 -0
  278. {pyturso-0.4.0rc17 → pyturso-0.4.1}/sdk-kit-macros/src/lib.rs +0 -0
  279. {pyturso-0.4.0rc17 → pyturso-0.4.1}/sync/engine/.gitignore +0 -0
  280. {pyturso-0.4.0rc17 → pyturso-0.4.1}/sync/engine/src/database_replay_generator.rs +0 -0
  281. {pyturso-0.4.0rc17 → pyturso-0.4.1}/sync/engine/src/lib.rs +0 -0
  282. {pyturso-0.4.0rc17 → pyturso-0.4.1}/sync/engine/src/wal_session.rs +0 -0
  283. {pyturso-0.4.0rc17 → pyturso-0.4.1}/sync/sdk-kit/bindgen.sh +0 -0
  284. {pyturso-0.4.0rc17 → pyturso-0.4.1}/sync/sdk-kit/src/lib.rs +0 -0
  285. {pyturso-0.4.0rc17 → pyturso-0.4.1}/turso/aio/__init__.py +0 -0
  286. {pyturso-0.4.0rc17 → pyturso-0.4.1}/turso/py.typed +0 -0
@@ -476,6 +476,15 @@ dependencies = [
476
476
  "bit-vec",
477
477
  ]
478
478
 
479
+ [[package]]
480
+ name = "branches"
481
+ version = "0.4.3"
482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
483
+ checksum = "21ab2097ac67710acd7d6034dd11b719c086a440ab65b92aa625be166f5995e9"
484
+ dependencies = [
485
+ "rustc_version",
486
+ ]
487
+
479
488
  [[package]]
480
489
  name = "bstr"
481
490
  version = "1.11.3"
@@ -537,9 +546,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
537
546
 
538
547
  [[package]]
539
548
  name = "bytes"
540
- version = "1.10.1"
549
+ version = "1.11.0"
541
550
  source = "registry+https://github.com/rust-lang/crates.io-index"
542
- checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
551
+ checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
543
552
 
544
553
  [[package]]
545
554
  name = "cast"
@@ -869,6 +878,16 @@ dependencies = [
869
878
  "crossterm 0.29.0",
870
879
  ]
871
880
 
881
+ [[package]]
882
+ name = "core-foundation"
883
+ version = "0.9.4"
884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
885
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
886
+ dependencies = [
887
+ "core-foundation-sys",
888
+ "libc",
889
+ ]
890
+
872
891
  [[package]]
873
892
  name = "core-foundation-sys"
874
893
  version = "0.8.7"
@@ -877,7 +896,7 @@ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
877
896
 
878
897
  [[package]]
879
898
  name = "core_tester"
880
- version = "0.4.0-pre.17"
899
+ version = "0.4.1"
881
900
  dependencies = [
882
901
  "anyhow",
883
902
  "assert_cmd",
@@ -887,6 +906,7 @@ dependencies = [
887
906
  "rand 0.9.2",
888
907
  "rand_chacha 0.9.0",
889
908
  "rusqlite",
909
+ "similar-asserts",
890
910
  "sql_generation",
891
911
  "tempfile",
892
912
  "test-log",
@@ -1382,7 +1402,7 @@ dependencies = [
1382
1402
  "libc",
1383
1403
  "option-ext",
1384
1404
  "redox_users 0.5.0",
1385
- "windows-sys 0.59.0",
1405
+ "windows-sys 0.61.1",
1386
1406
  ]
1387
1407
 
1388
1408
  [[package]]
@@ -1459,6 +1479,15 @@ version = "1.0.0"
1459
1479
  source = "registry+https://github.com/rust-lang/crates.io-index"
1460
1480
  checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
1461
1481
 
1482
+ [[package]]
1483
+ name = "encoding_rs"
1484
+ version = "0.8.35"
1485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1486
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
1487
+ dependencies = [
1488
+ "cfg-if",
1489
+ ]
1490
+
1462
1491
  [[package]]
1463
1492
  name = "encryption-throughput"
1464
1493
  version = "0.1.0"
@@ -1674,6 +1703,21 @@ version = "0.1.5"
1674
1703
  source = "registry+https://github.com/rust-lang/crates.io-index"
1675
1704
  checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
1676
1705
 
1706
+ [[package]]
1707
+ name = "foreign-types"
1708
+ version = "0.3.2"
1709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1710
+ checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
1711
+ dependencies = [
1712
+ "foreign-types-shared",
1713
+ ]
1714
+
1715
+ [[package]]
1716
+ name = "foreign-types-shared"
1717
+ version = "0.1.1"
1718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1719
+ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
1720
+
1677
1721
  [[package]]
1678
1722
  name = "form_urlencoded"
1679
1723
  version = "1.2.1"
@@ -2046,9 +2090,9 @@ checksum = "135b12329e5e3ce057a9f972339ea52bc954fe1e9358ef27f95e89716fbc5424"
2046
2090
 
2047
2091
  [[package]]
2048
2092
  name = "hyper"
2049
- version = "1.7.0"
2093
+ version = "1.8.1"
2050
2094
  source = "registry+https://github.com/rust-lang/crates.io-index"
2051
- checksum = "eb3aa54a13a0dfe7fbe3a59e0c76093041720fdc77b110cc0fc260fafb4dc51e"
2095
+ checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
2052
2096
  dependencies = [
2053
2097
  "atomic-waker",
2054
2098
  "bytes",
@@ -2067,6 +2111,22 @@ dependencies = [
2067
2111
  "want",
2068
2112
  ]
2069
2113
 
2114
+ [[package]]
2115
+ name = "hyper-rustls"
2116
+ version = "0.27.7"
2117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2118
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
2119
+ dependencies = [
2120
+ "http",
2121
+ "hyper",
2122
+ "hyper-util",
2123
+ "rustls",
2124
+ "rustls-pki-types",
2125
+ "tokio",
2126
+ "tokio-rustls",
2127
+ "tower-service",
2128
+ ]
2129
+
2070
2130
  [[package]]
2071
2131
  name = "hyper-timeout"
2072
2132
  version = "0.5.2"
@@ -2080,12 +2140,29 @@ dependencies = [
2080
2140
  "tower-service",
2081
2141
  ]
2082
2142
 
2143
+ [[package]]
2144
+ name = "hyper-tls"
2145
+ version = "0.6.0"
2146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2147
+ checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
2148
+ dependencies = [
2149
+ "bytes",
2150
+ "http-body-util",
2151
+ "hyper",
2152
+ "hyper-util",
2153
+ "native-tls",
2154
+ "tokio",
2155
+ "tokio-native-tls",
2156
+ "tower-service",
2157
+ ]
2158
+
2083
2159
  [[package]]
2084
2160
  name = "hyper-util"
2085
- version = "0.1.17"
2161
+ version = "0.1.19"
2086
2162
  source = "registry+https://github.com/rust-lang/crates.io-index"
2087
- checksum = "3c6995591a8f1380fcb4ba966a252a4b29188d51d2b89e3a252f5305be65aea8"
2163
+ checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f"
2088
2164
  dependencies = [
2165
+ "base64 0.22.1",
2089
2166
  "bytes",
2090
2167
  "futures-channel",
2091
2168
  "futures-core",
@@ -2093,12 +2170,16 @@ dependencies = [
2093
2170
  "http",
2094
2171
  "http-body",
2095
2172
  "hyper",
2173
+ "ipnet",
2096
2174
  "libc",
2175
+ "percent-encoding",
2097
2176
  "pin-project-lite",
2098
2177
  "socket2 0.6.0",
2178
+ "system-configuration",
2099
2179
  "tokio",
2100
2180
  "tower-service",
2101
2181
  "tracing",
2182
+ "windows-registry",
2102
2183
  ]
2103
2184
 
2104
2185
  [[package]]
@@ -2383,12 +2464,28 @@ dependencies = [
2383
2464
  "libc",
2384
2465
  ]
2385
2466
 
2467
+ [[package]]
2468
+ name = "ipnet"
2469
+ version = "2.11.0"
2470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2471
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
2472
+
2386
2473
  [[package]]
2387
2474
  name = "ipnetwork"
2388
2475
  version = "0.21.1"
2389
2476
  source = "registry+https://github.com/rust-lang/crates.io-index"
2390
2477
  checksum = "cf370abdafd54d13e54a620e8c3e1145f28e46cc9d704bc6d94414559df41763"
2391
2478
 
2479
+ [[package]]
2480
+ name = "iri-string"
2481
+ version = "0.7.9"
2482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2483
+ checksum = "4f867b9d1d896b67beb18518eda36fdb77a32ea590de864f1325b294a6d14397"
2484
+ dependencies = [
2485
+ "memchr",
2486
+ "serde",
2487
+ ]
2488
+
2392
2489
  [[package]]
2393
2490
  name = "is-terminal"
2394
2491
  version = "0.4.16"
@@ -2632,7 +2729,7 @@ dependencies = [
2632
2729
 
2633
2730
  [[package]]
2634
2731
  name = "limbo_completion"
2635
- version = "0.4.0-pre.17"
2732
+ version = "0.4.1"
2636
2733
  dependencies = [
2637
2734
  "mimalloc",
2638
2735
  "turso_ext",
@@ -2640,7 +2737,7 @@ dependencies = [
2640
2737
 
2641
2738
  [[package]]
2642
2739
  name = "limbo_crypto"
2643
- version = "0.4.0-pre.17"
2740
+ version = "0.4.1"
2644
2741
  dependencies = [
2645
2742
  "blake3",
2646
2743
  "data-encoding",
@@ -2653,7 +2750,7 @@ dependencies = [
2653
2750
 
2654
2751
  [[package]]
2655
2752
  name = "limbo_csv"
2656
- version = "0.4.0-pre.17"
2753
+ version = "0.4.1"
2657
2754
  dependencies = [
2658
2755
  "csv",
2659
2756
  "mimalloc",
@@ -2663,7 +2760,7 @@ dependencies = [
2663
2760
 
2664
2761
  [[package]]
2665
2762
  name = "limbo_fuzzy"
2666
- version = "0.4.0-pre.17"
2763
+ version = "0.4.1"
2667
2764
  dependencies = [
2668
2765
  "mimalloc",
2669
2766
  "turso_ext",
@@ -2671,7 +2768,7 @@ dependencies = [
2671
2768
 
2672
2769
  [[package]]
2673
2770
  name = "limbo_ipaddr"
2674
- version = "0.4.0-pre.17"
2771
+ version = "0.4.1"
2675
2772
  dependencies = [
2676
2773
  "ipnetwork",
2677
2774
  "mimalloc",
@@ -2680,7 +2777,7 @@ dependencies = [
2680
2777
 
2681
2778
  [[package]]
2682
2779
  name = "limbo_percentile"
2683
- version = "0.4.0-pre.17"
2780
+ version = "0.4.1"
2684
2781
  dependencies = [
2685
2782
  "mimalloc",
2686
2783
  "turso_ext",
@@ -2688,7 +2785,7 @@ dependencies = [
2688
2785
 
2689
2786
  [[package]]
2690
2787
  name = "limbo_regexp"
2691
- version = "0.4.0-pre.17"
2788
+ version = "0.4.1"
2692
2789
  dependencies = [
2693
2790
  "mimalloc",
2694
2791
  "regex",
@@ -2697,7 +2794,7 @@ dependencies = [
2697
2794
 
2698
2795
  [[package]]
2699
2796
  name = "limbo_sim"
2700
- version = "0.4.0-pre.17"
2797
+ version = "0.4.1"
2701
2798
  dependencies = [
2702
2799
  "anyhow",
2703
2800
  "bitflags 2.9.4",
@@ -2734,7 +2831,7 @@ dependencies = [
2734
2831
 
2735
2832
  [[package]]
2736
2833
  name = "limbo_sqlite_test_ext"
2737
- version = "0.4.0-pre.17"
2834
+ version = "0.4.1"
2738
2835
  dependencies = [
2739
2836
  "cc",
2740
2837
  ]
@@ -2838,9 +2935,9 @@ checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771"
2838
2935
 
2839
2936
  [[package]]
2840
2937
  name = "memchr"
2841
- version = "2.7.4"
2938
+ version = "2.7.6"
2842
2939
  source = "registry+https://github.com/rust-lang/crates.io-index"
2843
- checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
2940
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
2844
2941
 
2845
2942
  [[package]]
2846
2943
  name = "memmap2"
@@ -3007,6 +3104,23 @@ dependencies = [
3007
3104
  "libloading",
3008
3105
  ]
3009
3106
 
3107
+ [[package]]
3108
+ name = "native-tls"
3109
+ version = "0.2.14"
3110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3111
+ checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e"
3112
+ dependencies = [
3113
+ "libc",
3114
+ "log",
3115
+ "openssl",
3116
+ "openssl-probe",
3117
+ "openssl-sys",
3118
+ "schannel",
3119
+ "security-framework",
3120
+ "security-framework-sys",
3121
+ "tempfile",
3122
+ ]
3123
+
3010
3124
  [[package]]
3011
3125
  name = "nibble_vec"
3012
3126
  version = "0.1.0"
@@ -3174,6 +3288,50 @@ version = "0.3.1"
3174
3288
  source = "registry+https://github.com/rust-lang/crates.io-index"
3175
3289
  checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
3176
3290
 
3291
+ [[package]]
3292
+ name = "openssl"
3293
+ version = "0.10.75"
3294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3295
+ checksum = "08838db121398ad17ab8531ce9de97b244589089e290a384c900cb9ff7434328"
3296
+ dependencies = [
3297
+ "bitflags 2.9.4",
3298
+ "cfg-if",
3299
+ "foreign-types",
3300
+ "libc",
3301
+ "once_cell",
3302
+ "openssl-macros",
3303
+ "openssl-sys",
3304
+ ]
3305
+
3306
+ [[package]]
3307
+ name = "openssl-macros"
3308
+ version = "0.1.1"
3309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3310
+ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
3311
+ dependencies = [
3312
+ "proc-macro2",
3313
+ "quote",
3314
+ "syn 2.0.100",
3315
+ ]
3316
+
3317
+ [[package]]
3318
+ name = "openssl-probe"
3319
+ version = "0.1.6"
3320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3321
+ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
3322
+
3323
+ [[package]]
3324
+ name = "openssl-sys"
3325
+ version = "0.9.111"
3326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3327
+ checksum = "82cab2d520aa75e3c58898289429321eb788c3106963d0dc886ec7a5f4adc321"
3328
+ dependencies = [
3329
+ "cc",
3330
+ "libc",
3331
+ "pkg-config",
3332
+ "vcpkg",
3333
+ ]
3334
+
3177
3335
  [[package]]
3178
3336
  name = "option-ext"
3179
3337
  version = "0.2.0"
@@ -3560,7 +3718,7 @@ dependencies = [
3560
3718
 
3561
3719
  [[package]]
3562
3720
  name = "py-turso"
3563
- version = "0.4.0-pre.17"
3721
+ version = "0.4.1"
3564
3722
  dependencies = [
3565
3723
  "anyhow",
3566
3724
  "pyo3",
@@ -3869,6 +4027,46 @@ version = "1.9.3"
3869
4027
  source = "registry+https://github.com/rust-lang/crates.io-index"
3870
4028
  checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2"
3871
4029
 
4030
+ [[package]]
4031
+ name = "reqwest"
4032
+ version = "0.12.28"
4033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4034
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
4035
+ dependencies = [
4036
+ "base64 0.22.1",
4037
+ "bytes",
4038
+ "encoding_rs",
4039
+ "futures-core",
4040
+ "h2",
4041
+ "http",
4042
+ "http-body",
4043
+ "http-body-util",
4044
+ "hyper",
4045
+ "hyper-rustls",
4046
+ "hyper-tls",
4047
+ "hyper-util",
4048
+ "js-sys",
4049
+ "log",
4050
+ "mime",
4051
+ "native-tls",
4052
+ "percent-encoding",
4053
+ "pin-project-lite",
4054
+ "rustls-pki-types",
4055
+ "serde",
4056
+ "serde_json",
4057
+ "serde_urlencoded",
4058
+ "sync_wrapper",
4059
+ "tokio",
4060
+ "tokio-native-tls",
4061
+ "tower 0.5.2",
4062
+ "tower-http",
4063
+ "tower-service",
4064
+ "url",
4065
+ "wasm-bindgen",
4066
+ "wasm-bindgen-futures",
4067
+ "web-sys",
4068
+ ]
4069
+
3872
4070
  [[package]]
3873
4071
  name = "rgb"
3874
4072
  version = "0.8.50"
@@ -4008,6 +4206,39 @@ dependencies = [
4008
4206
  "windows-sys 0.59.0",
4009
4207
  ]
4010
4208
 
4209
+ [[package]]
4210
+ name = "rustls"
4211
+ version = "0.23.35"
4212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4213
+ checksum = "533f54bc6a7d4f647e46ad909549eda97bf5afc1585190ef692b4286b198bd8f"
4214
+ dependencies = [
4215
+ "once_cell",
4216
+ "rustls-pki-types",
4217
+ "rustls-webpki",
4218
+ "subtle",
4219
+ "zeroize",
4220
+ ]
4221
+
4222
+ [[package]]
4223
+ name = "rustls-pki-types"
4224
+ version = "1.13.2"
4225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4226
+ checksum = "21e6f2ab2928ca4291b86736a8bd920a277a399bba1589409d72154ff87c1282"
4227
+ dependencies = [
4228
+ "zeroize",
4229
+ ]
4230
+
4231
+ [[package]]
4232
+ name = "rustls-webpki"
4233
+ version = "0.103.8"
4234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4235
+ checksum = "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52"
4236
+ dependencies = [
4237
+ "ring",
4238
+ "rustls-pki-types",
4239
+ "untrusted",
4240
+ ]
4241
+
4011
4242
  [[package]]
4012
4243
  name = "rustversion"
4013
4244
  version = "1.0.20"
@@ -4063,6 +4294,15 @@ dependencies = [
4063
4294
  "winapi-util",
4064
4295
  ]
4065
4296
 
4297
+ [[package]]
4298
+ name = "schannel"
4299
+ version = "0.1.28"
4300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4301
+ checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
4302
+ dependencies = [
4303
+ "windows-sys 0.61.1",
4304
+ ]
4305
+
4066
4306
  [[package]]
4067
4307
  name = "schemars"
4068
4308
  version = "0.8.22"
@@ -4119,6 +4359,29 @@ version = "1.2.0"
4119
4359
  source = "registry+https://github.com/rust-lang/crates.io-index"
4120
4360
  checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
4121
4361
 
4362
+ [[package]]
4363
+ name = "security-framework"
4364
+ version = "2.11.1"
4365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4366
+ checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
4367
+ dependencies = [
4368
+ "bitflags 2.9.4",
4369
+ "core-foundation",
4370
+ "core-foundation-sys",
4371
+ "libc",
4372
+ "security-framework-sys",
4373
+ ]
4374
+
4375
+ [[package]]
4376
+ name = "security-framework-sys"
4377
+ version = "2.15.0"
4378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4379
+ checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
4380
+ dependencies = [
4381
+ "core-foundation-sys",
4382
+ "libc",
4383
+ ]
4384
+
4122
4385
  [[package]]
4123
4386
  name = "semver"
4124
4387
  version = "1.0.26"
@@ -4177,6 +4440,18 @@ dependencies = [
4177
4440
  "serde",
4178
4441
  ]
4179
4442
 
4443
+ [[package]]
4444
+ name = "serde_urlencoded"
4445
+ version = "0.7.1"
4446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4447
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
4448
+ dependencies = [
4449
+ "form_urlencoded",
4450
+ "itoa",
4451
+ "ryu",
4452
+ "serde",
4453
+ ]
4454
+
4180
4455
  [[package]]
4181
4456
  name = "sha1_smol"
4182
4457
  version = "1.0.1"
@@ -4320,7 +4595,7 @@ checksum = "d372029cb5195f9ab4e4b9aef550787dce78b124fcaee8d82519925defcd6f0d"
4320
4595
 
4321
4596
  [[package]]
4322
4597
  name = "sql_generation"
4323
- version = "0.4.0-pre.17"
4598
+ version = "0.4.1"
4324
4599
  dependencies = [
4325
4600
  "anarchist-readable-name-generator-lib",
4326
4601
  "anyhow",
@@ -4467,6 +4742,9 @@ name = "sync_wrapper"
4467
4742
  version = "1.0.2"
4468
4743
  source = "registry+https://github.com/rust-lang/crates.io-index"
4469
4744
  checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
4745
+ dependencies = [
4746
+ "futures-core",
4747
+ ]
4470
4748
 
4471
4749
  [[package]]
4472
4750
  name = "synstructure"
@@ -4500,6 +4778,27 @@ dependencies = [
4500
4778
  "yaml-rust",
4501
4779
  ]
4502
4780
 
4781
+ [[package]]
4782
+ name = "system-configuration"
4783
+ version = "0.6.1"
4784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4785
+ checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b"
4786
+ dependencies = [
4787
+ "bitflags 2.9.4",
4788
+ "core-foundation",
4789
+ "system-configuration-sys",
4790
+ ]
4791
+
4792
+ [[package]]
4793
+ name = "system-configuration-sys"
4794
+ version = "0.6.0"
4795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4796
+ checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
4797
+ dependencies = [
4798
+ "core-foundation-sys",
4799
+ "libc",
4800
+ ]
4801
+
4503
4802
  [[package]]
4504
4803
  name = "target-lexicon"
4505
4804
  version = "0.13.2"
@@ -4725,6 +5024,26 @@ dependencies = [
4725
5024
  "syn 2.0.100",
4726
5025
  ]
4727
5026
 
5027
+ [[package]]
5028
+ name = "tokio-native-tls"
5029
+ version = "0.3.1"
5030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5031
+ checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
5032
+ dependencies = [
5033
+ "native-tls",
5034
+ "tokio",
5035
+ ]
5036
+
5037
+ [[package]]
5038
+ name = "tokio-rustls"
5039
+ version = "0.26.4"
5040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5041
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
5042
+ dependencies = [
5043
+ "rustls",
5044
+ "tokio",
5045
+ ]
5046
+
4728
5047
  [[package]]
4729
5048
  name = "tokio-stream"
4730
5049
  version = "0.1.17"
@@ -4851,6 +5170,25 @@ dependencies = [
4851
5170
  "futures-util",
4852
5171
  "pin-project-lite",
4853
5172
  "sync_wrapper",
5173
+ "tokio",
5174
+ "tower-layer",
5175
+ "tower-service",
5176
+ ]
5177
+
5178
+ [[package]]
5179
+ name = "tower-http"
5180
+ version = "0.6.8"
5181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5182
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
5183
+ dependencies = [
5184
+ "bitflags 2.9.4",
5185
+ "bytes",
5186
+ "futures-util",
5187
+ "http",
5188
+ "http-body",
5189
+ "iri-string",
5190
+ "pin-project-lite",
5191
+ "tower 0.5.2",
4854
5192
  "tower-layer",
4855
5193
  "tower-service",
4856
5194
  ]
@@ -4922,6 +5260,16 @@ dependencies = [
4922
5260
  "tracing-core",
4923
5261
  ]
4924
5262
 
5263
+ [[package]]
5264
+ name = "tracing-serde"
5265
+ version = "0.2.0"
5266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5267
+ checksum = "704b1aeb7be0d0a84fc9828cae51dab5970fee5088f83d1dd7ee6f6246fc6ff1"
5268
+ dependencies = [
5269
+ "serde",
5270
+ "tracing-core",
5271
+ ]
5272
+
4925
5273
  [[package]]
4926
5274
  name = "tracing-subscriber"
4927
5275
  version = "0.3.20"
@@ -4932,12 +5280,15 @@ dependencies = [
4932
5280
  "nu-ansi-term",
4933
5281
  "once_cell",
4934
5282
  "regex-automata",
5283
+ "serde",
5284
+ "serde_json",
4935
5285
  "sharded-slab",
4936
5286
  "smallvec",
4937
5287
  "thread_local",
4938
5288
  "tracing",
4939
5289
  "tracing-core",
4940
5290
  "tracing-log",
5291
+ "tracing-serde",
4941
5292
  ]
4942
5293
 
4943
5294
  [[package]]
@@ -4948,22 +5299,38 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
4948
5299
 
4949
5300
  [[package]]
4950
5301
  name = "turso"
4951
- version = "0.4.0-pre.17"
5302
+ version = "0.4.1"
4952
5303
  dependencies = [
5304
+ "anyhow",
5305
+ "bytes",
5306
+ "http-body-util",
5307
+ "hyper",
5308
+ "hyper-tls",
5309
+ "hyper-util",
4953
5310
  "mimalloc",
4954
5311
  "rand 0.9.2",
4955
5312
  "rand_chacha 0.9.0",
5313
+ "reqwest",
5314
+ "serde_json",
4956
5315
  "tempfile",
4957
5316
  "thiserror 2.0.16",
4958
5317
  "tokio",
4959
5318
  "tracing",
4960
5319
  "tracing-subscriber",
5320
+ "turso_sdk_kit",
5321
+ "turso_sync_sdk_kit",
5322
+ ]
5323
+
5324
+ [[package]]
5325
+ name = "turso-dotnet"
5326
+ version = "0.4.1"
5327
+ dependencies = [
4961
5328
  "turso_core",
4962
5329
  ]
4963
5330
 
4964
5331
  [[package]]
4965
5332
  name = "turso-java"
4966
- version = "0.4.0-pre.17"
5333
+ version = "0.4.1"
4967
5334
  dependencies = [
4968
5335
  "jni",
4969
5336
  "thiserror 2.0.16",
@@ -4972,9 +5339,10 @@ dependencies = [
4972
5339
 
4973
5340
  [[package]]
4974
5341
  name = "turso_cli"
4975
- version = "0.4.0-pre.17"
5342
+ version = "0.4.1"
4976
5343
  dependencies = [
4977
5344
  "anyhow",
5345
+ "bytes",
4978
5346
  "cfg-if",
4979
5347
  "clap",
4980
5348
  "clap_complete",
@@ -4990,7 +5358,9 @@ dependencies = [
4990
5358
  "miette",
4991
5359
  "mimalloc",
4992
5360
  "nu-ansi-term",
5361
+ "prost 0.14.1",
4993
5362
  "rand 0.8.5",
5363
+ "roaring",
4994
5364
  "rustyline",
4995
5365
  "schemars 0.8.22",
4996
5366
  "serde",
@@ -5004,12 +5374,13 @@ dependencies = [
5004
5374
  "tracing-appender",
5005
5375
  "tracing-subscriber",
5006
5376
  "turso_core",
5377
+ "turso_sync_engine",
5007
5378
  "validator",
5008
5379
  ]
5009
5380
 
5010
5381
  [[package]]
5011
5382
  name = "turso_core"
5012
- version = "0.4.0-pre.17"
5383
+ version = "0.4.1"
5013
5384
  dependencies = [
5014
5385
  "aegis",
5015
5386
  "aes",
@@ -5018,7 +5389,9 @@ dependencies = [
5018
5389
  "arc-swap",
5019
5390
  "bitflags 2.9.4",
5020
5391
  "bloom",
5392
+ "branches",
5021
5393
  "built",
5394
+ "bumpalo",
5022
5395
  "bytemuck",
5023
5396
  "cfg_block",
5024
5397
  "chrono",
@@ -5074,7 +5447,7 @@ dependencies = [
5074
5447
 
5075
5448
  [[package]]
5076
5449
  name = "turso_dart"
5077
- version = "0.4.0-pre.17"
5450
+ version = "0.4.1"
5078
5451
  dependencies = [
5079
5452
  "flutter_rust_bridge",
5080
5453
  "turso_core",
@@ -5082,7 +5455,7 @@ dependencies = [
5082
5455
 
5083
5456
  [[package]]
5084
5457
  name = "turso_ext"
5085
- version = "0.4.0-pre.17"
5458
+ version = "0.4.1"
5086
5459
  dependencies = [
5087
5460
  "chrono",
5088
5461
  "getrandom 0.3.2",
@@ -5091,7 +5464,7 @@ dependencies = [
5091
5464
 
5092
5465
  [[package]]
5093
5466
  name = "turso_ext_tests"
5094
- version = "0.4.0-pre.17"
5467
+ version = "0.4.1"
5095
5468
  dependencies = [
5096
5469
  "env_logger 0.11.7",
5097
5470
  "lazy_static",
@@ -5102,7 +5475,7 @@ dependencies = [
5102
5475
 
5103
5476
  [[package]]
5104
5477
  name = "turso_macros"
5105
- version = "0.4.0-pre.17"
5478
+ version = "0.4.1"
5106
5479
  dependencies = [
5107
5480
  "proc-macro2",
5108
5481
  "quote",
@@ -5111,7 +5484,7 @@ dependencies = [
5111
5484
 
5112
5485
  [[package]]
5113
5486
  name = "turso_node"
5114
- version = "0.4.0-pre.17"
5487
+ version = "0.4.1"
5115
5488
  dependencies = [
5116
5489
  "chrono",
5117
5490
  "napi",
@@ -5124,11 +5497,12 @@ dependencies = [
5124
5497
 
5125
5498
  [[package]]
5126
5499
  name = "turso_parser"
5127
- version = "0.4.0-pre.17"
5500
+ version = "0.4.1"
5128
5501
  dependencies = [
5129
5502
  "bitflags 2.9.4",
5130
5503
  "criterion",
5131
5504
  "fallible-iterator",
5505
+ "memchr",
5132
5506
  "miette",
5133
5507
  "pprof",
5134
5508
  "serde",
@@ -5140,7 +5514,7 @@ dependencies = [
5140
5514
 
5141
5515
  [[package]]
5142
5516
  name = "turso_sdk_kit"
5143
- version = "0.4.0-pre.17"
5517
+ version = "0.4.1"
5144
5518
  dependencies = [
5145
5519
  "bindgen",
5146
5520
  "env_logger 0.11.7",
@@ -5153,7 +5527,7 @@ dependencies = [
5153
5527
 
5154
5528
  [[package]]
5155
5529
  name = "turso_sdk_kit_macros"
5156
- version = "0.4.0-pre.17"
5530
+ version = "0.4.1"
5157
5531
  dependencies = [
5158
5532
  "proc-macro2",
5159
5533
  "quote",
@@ -5162,7 +5536,7 @@ dependencies = [
5162
5536
 
5163
5537
  [[package]]
5164
5538
  name = "turso_sqlite3"
5165
- version = "0.4.0-pre.17"
5539
+ version = "0.4.1"
5166
5540
  dependencies = [
5167
5541
  "env_logger 0.11.7",
5168
5542
  "libc",
@@ -5175,7 +5549,7 @@ dependencies = [
5175
5549
 
5176
5550
  [[package]]
5177
5551
  name = "turso_stress"
5178
- version = "0.4.0-pre.17"
5552
+ version = "0.4.1"
5179
5553
  dependencies = [
5180
5554
  "antithesis_sdk",
5181
5555
  "clap",
@@ -5184,7 +5558,6 @@ dependencies = [
5184
5558
  "rusqlite",
5185
5559
  "tempfile",
5186
5560
  "tokio",
5187
- "tracing",
5188
5561
  "tracing-appender",
5189
5562
  "tracing-subscriber",
5190
5563
  "turso",
@@ -5192,7 +5565,7 @@ dependencies = [
5192
5565
 
5193
5566
  [[package]]
5194
5567
  name = "turso_sync_engine"
5195
- version = "0.4.0-pre.17"
5568
+ version = "0.4.1"
5196
5569
  dependencies = [
5197
5570
  "base64 0.22.1",
5198
5571
  "bytes",
@@ -5212,7 +5585,6 @@ dependencies = [
5212
5585
  "tokio",
5213
5586
  "tracing",
5214
5587
  "tracing-subscriber",
5215
- "turso",
5216
5588
  "turso_core",
5217
5589
  "turso_parser",
5218
5590
  "uuid",
@@ -5220,7 +5592,7 @@ dependencies = [
5220
5592
 
5221
5593
  [[package]]
5222
5594
  name = "turso_sync_js"
5223
- version = "0.4.0-pre.17"
5595
+ version = "0.4.1"
5224
5596
  dependencies = [
5225
5597
  "genawaiter",
5226
5598
  "napi",
@@ -5235,7 +5607,7 @@ dependencies = [
5235
5607
 
5236
5608
  [[package]]
5237
5609
  name = "turso_sync_sdk_kit"
5238
- version = "0.4.0-pre.17"
5610
+ version = "0.4.1"
5239
5611
  dependencies = [
5240
5612
  "bindgen",
5241
5613
  "env_logger 0.11.7",
@@ -5252,7 +5624,7 @@ dependencies = [
5252
5624
 
5253
5625
  [[package]]
5254
5626
  name = "turso_whopper"
5255
- version = "0.4.0-pre.17"
5627
+ version = "0.4.1"
5256
5628
  dependencies = [
5257
5629
  "anyhow",
5258
5630
  "clap",
@@ -5626,6 +5998,35 @@ version = "0.2.0"
5626
5998
  source = "registry+https://github.com/rust-lang/crates.io-index"
5627
5999
  checksum = "45e46c0661abb7180e7b9c281db115305d49ca1709ab8242adf09666d2173c65"
5628
6000
 
6001
+ [[package]]
6002
+ name = "windows-registry"
6003
+ version = "0.6.0"
6004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
6005
+ checksum = "3f91f87ce112ffb7275000ea98eb1940912c21c1567c9312fde20261f3eadd29"
6006
+ dependencies = [
6007
+ "windows-link",
6008
+ "windows-result",
6009
+ "windows-strings",
6010
+ ]
6011
+
6012
+ [[package]]
6013
+ name = "windows-result"
6014
+ version = "0.4.0"
6015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
6016
+ checksum = "7084dcc306f89883455a206237404d3eaf961e5bd7e0f312f7c91f57eb44167f"
6017
+ dependencies = [
6018
+ "windows-link",
6019
+ ]
6020
+
6021
+ [[package]]
6022
+ name = "windows-strings"
6023
+ version = "0.5.0"
6024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
6025
+ checksum = "7218c655a553b0bed4426cf54b20d7ba363ef543b52d515b3e48d7fd55318dda"
6026
+ dependencies = [
6027
+ "windows-link",
6028
+ ]
6029
+
5629
6030
  [[package]]
5630
6031
  name = "windows-sys"
5631
6032
  version = "0.45.0"
@@ -5662,6 +6063,15 @@ dependencies = [
5662
6063
  "windows-targets 0.52.6",
5663
6064
  ]
5664
6065
 
6066
+ [[package]]
6067
+ name = "windows-sys"
6068
+ version = "0.61.1"
6069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
6070
+ checksum = "6f109e41dd4a3c848907eb83d5a42ea98b3769495597450cf6d153507b166f0f"
6071
+ dependencies = [
6072
+ "windows-link",
6073
+ ]
6074
+
5665
6075
  [[package]]
5666
6076
  name = "windows-targets"
5667
6077
  version = "0.42.2"
@@ -5984,6 +6394,12 @@ dependencies = [
5984
6394
  "synstructure",
5985
6395
  ]
5986
6396
 
6397
+ [[package]]
6398
+ name = "zeroize"
6399
+ version = "1.8.2"
6400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
6401
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
6402
+
5987
6403
  [[package]]
5988
6404
  name = "zerovec"
5989
6405
  version = "0.10.4"