pyturso 0.3.0rc6__tar.gz → 0.3.0rc7__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.
Potentially problematic release.
This version of pyturso might be problematic. Click here for more details.
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/Cargo.lock +27 -27
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/Cargo.toml +17 -17
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/PKG-INFO +1 -1
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/bindings/python/Cargo.toml +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/bindings/python/build.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/bindings/python/example.py +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/bindings/python/requirements-dev.txt +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/bindings/python/requirements.txt +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/bindings/python/src/errors.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/bindings/python/src/lib.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/bindings/python/tests/__init__.py +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/bindings/python/tests/test_database.py +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/bindings/python/turso/__init__.py +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/bindings/python/turso/py.typed +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/Cargo.toml +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/assert.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/benches/benchmark.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/benches/json_benchmark.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/benches/mvcc_benchmark.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/benches/tpc_h_benchmark.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/build.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/error.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/ext/dynamic.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/ext/mod.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/ext/vtab_xconnect.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/fast_lock.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/function.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/functions/datetime.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/functions/mod.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/functions/printf.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/functions/strftime.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/incremental/aggregate_operator.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/incremental/compiler.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/incremental/cursor.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/incremental/dbsp.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/incremental/expr_compiler.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/incremental/filter_operator.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/incremental/input_operator.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/incremental/join_operator.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/incremental/merge_operator.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/incremental/mod.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/incremental/operator.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/incremental/persistence.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/incremental/project_operator.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/incremental/view.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/index_method/backing_btree.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/index_method/mod.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/index_method/toy_vector_sparse_ivf.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/info.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/io/clock.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/io/common.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/io/completions.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/io/generic.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/io/io_uring.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/io/memory.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/io/mod.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/io/unix.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/io/vfs.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/io/windows.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/json/cache.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/json/error.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/json/jsonb.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/json/mod.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/json/ops.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/json/path.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/json/vtab.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/lib.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/mvcc/clock.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/mvcc/cursor.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/mvcc/database/checkpoint_state_machine.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/mvcc/database/mod.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/mvcc/database/tests.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/mvcc/mod.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/mvcc/persistent_storage/logical_log.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/mvcc/persistent_storage/mod.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/numeric/mod.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/numeric/nonnan.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/parameters.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/pragma.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/pseudo.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/schema.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/series.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/state_machine.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/storage/btree.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/storage/buffer_pool.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/storage/checksum.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/storage/database.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/storage/encryption.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/storage/mod.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/storage/page_cache.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/storage/pager.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/storage/slot_bitmap.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/storage/sqlite3_ondisk.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/storage/state_machines.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/storage/subjournal.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/storage/wal.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/time/internal.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/time/mod.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/translate/aggregation.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/translate/alter.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/translate/analyze.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/translate/attach.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/translate/collate.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/translate/compound_select.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/translate/delete.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/translate/display.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/translate/emitter.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/translate/expr.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/translate/fkeys.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/translate/group_by.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/translate/index.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/translate/insert.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/translate/integrity_check.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/translate/logical.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/translate/main_loop.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/translate/mod.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/translate/optimizer/OPTIMIZER.md +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/translate/optimizer/access_method.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/translate/optimizer/constraints.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/translate/optimizer/cost.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/translate/optimizer/join.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/translate/optimizer/lift_common_subexpressions.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/translate/optimizer/mod.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/translate/optimizer/order.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/translate/order_by.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/translate/plan.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/translate/planner.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/translate/pragma.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/translate/result_row.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/translate/rollback.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/translate/schema.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/translate/select.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/translate/subquery.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/translate/transaction.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/translate/update.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/translate/upsert.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/translate/values.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/translate/view.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/translate/window.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/types.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/util.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/uuid.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/vdbe/builder.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/vdbe/execute.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/vdbe/explain.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/vdbe/insn.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/vdbe/likeop.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/vdbe/metrics.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/vdbe/mod.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/vdbe/sorter.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/vector/mod.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/vector/operations/concat.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/vector/operations/convert.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/vector/operations/distance_cos.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/vector/operations/distance_l2.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/vector/operations/jaccard.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/vector/operations/mod.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/vector/operations/serialize.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/vector/operations/slice.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/vector/operations/text.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/vector/vector_types.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/vtab.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/extensions/core/Cargo.toml +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/extensions/core/README.md +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/extensions/core/build.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/extensions/core/src/functions.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/extensions/core/src/lib.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/extensions/core/src/types.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/extensions/core/src/vfs_modules.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/extensions/core/src/vtabs.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/macros/Cargo.toml +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/macros/src/atomic_enum.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/macros/src/ext/agg_derive.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/macros/src/ext/match_ignore_ascii_case.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/macros/src/ext/mod.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/macros/src/ext/scalars.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/macros/src/ext/vfs_derive.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/macros/src/ext/vtab_derive.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/macros/src/lib.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/parser/Cargo.toml +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/parser/README.md +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/parser/benches/parser_benchmark.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/parser/src/ast/check.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/parser/src/ast/fmt.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/parser/src/ast.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/parser/src/error.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/parser/src/lexer.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/parser/src/lib.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/parser/src/parser.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/parser/src/token.rs +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/pyproject.toml +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/turso/__init__.py +0 -0
- {pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/turso/py.typed +0 -0
|
@@ -828,7 +828,7 @@ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
|
828
828
|
|
|
829
829
|
[[package]]
|
|
830
830
|
name = "core_tester"
|
|
831
|
-
version = "0.3.0-pre.
|
|
831
|
+
version = "0.3.0-pre.7"
|
|
832
832
|
dependencies = [
|
|
833
833
|
"anyhow",
|
|
834
834
|
"assert_cmd",
|
|
@@ -2545,7 +2545,7 @@ dependencies = [
|
|
|
2545
2545
|
|
|
2546
2546
|
[[package]]
|
|
2547
2547
|
name = "limbo_completion"
|
|
2548
|
-
version = "0.3.0-pre.
|
|
2548
|
+
version = "0.3.0-pre.7"
|
|
2549
2549
|
dependencies = [
|
|
2550
2550
|
"mimalloc",
|
|
2551
2551
|
"turso_ext",
|
|
@@ -2553,7 +2553,7 @@ dependencies = [
|
|
|
2553
2553
|
|
|
2554
2554
|
[[package]]
|
|
2555
2555
|
name = "limbo_crypto"
|
|
2556
|
-
version = "0.3.0-pre.
|
|
2556
|
+
version = "0.3.0-pre.7"
|
|
2557
2557
|
dependencies = [
|
|
2558
2558
|
"blake3",
|
|
2559
2559
|
"data-encoding",
|
|
@@ -2566,7 +2566,7 @@ dependencies = [
|
|
|
2566
2566
|
|
|
2567
2567
|
[[package]]
|
|
2568
2568
|
name = "limbo_csv"
|
|
2569
|
-
version = "0.3.0-pre.
|
|
2569
|
+
version = "0.3.0-pre.7"
|
|
2570
2570
|
dependencies = [
|
|
2571
2571
|
"csv",
|
|
2572
2572
|
"mimalloc",
|
|
@@ -2576,7 +2576,7 @@ dependencies = [
|
|
|
2576
2576
|
|
|
2577
2577
|
[[package]]
|
|
2578
2578
|
name = "limbo_fuzzy"
|
|
2579
|
-
version = "0.3.0-pre.
|
|
2579
|
+
version = "0.3.0-pre.7"
|
|
2580
2580
|
dependencies = [
|
|
2581
2581
|
"mimalloc",
|
|
2582
2582
|
"turso_ext",
|
|
@@ -2584,7 +2584,7 @@ dependencies = [
|
|
|
2584
2584
|
|
|
2585
2585
|
[[package]]
|
|
2586
2586
|
name = "limbo_ipaddr"
|
|
2587
|
-
version = "0.3.0-pre.
|
|
2587
|
+
version = "0.3.0-pre.7"
|
|
2588
2588
|
dependencies = [
|
|
2589
2589
|
"ipnetwork",
|
|
2590
2590
|
"mimalloc",
|
|
@@ -2593,7 +2593,7 @@ dependencies = [
|
|
|
2593
2593
|
|
|
2594
2594
|
[[package]]
|
|
2595
2595
|
name = "limbo_percentile"
|
|
2596
|
-
version = "0.3.0-pre.
|
|
2596
|
+
version = "0.3.0-pre.7"
|
|
2597
2597
|
dependencies = [
|
|
2598
2598
|
"mimalloc",
|
|
2599
2599
|
"turso_ext",
|
|
@@ -2601,7 +2601,7 @@ dependencies = [
|
|
|
2601
2601
|
|
|
2602
2602
|
[[package]]
|
|
2603
2603
|
name = "limbo_regexp"
|
|
2604
|
-
version = "0.3.0-pre.
|
|
2604
|
+
version = "0.3.0-pre.7"
|
|
2605
2605
|
dependencies = [
|
|
2606
2606
|
"mimalloc",
|
|
2607
2607
|
"regex",
|
|
@@ -2610,7 +2610,7 @@ dependencies = [
|
|
|
2610
2610
|
|
|
2611
2611
|
[[package]]
|
|
2612
2612
|
name = "limbo_sim"
|
|
2613
|
-
version = "0.3.0-pre.
|
|
2613
|
+
version = "0.3.0-pre.7"
|
|
2614
2614
|
dependencies = [
|
|
2615
2615
|
"anyhow",
|
|
2616
2616
|
"bitflags 2.9.4",
|
|
@@ -2646,7 +2646,7 @@ dependencies = [
|
|
|
2646
2646
|
|
|
2647
2647
|
[[package]]
|
|
2648
2648
|
name = "limbo_sqlite_test_ext"
|
|
2649
|
-
version = "0.3.0-pre.
|
|
2649
|
+
version = "0.3.0-pre.7"
|
|
2650
2650
|
dependencies = [
|
|
2651
2651
|
"cc",
|
|
2652
2652
|
]
|
|
@@ -3462,7 +3462,7 @@ dependencies = [
|
|
|
3462
3462
|
|
|
3463
3463
|
[[package]]
|
|
3464
3464
|
name = "py-turso"
|
|
3465
|
-
version = "0.3.0-pre.
|
|
3465
|
+
version = "0.3.0-pre.7"
|
|
3466
3466
|
dependencies = [
|
|
3467
3467
|
"anyhow",
|
|
3468
3468
|
"pyo3",
|
|
@@ -4208,7 +4208,7 @@ checksum = "d372029cb5195f9ab4e4b9aef550787dce78b124fcaee8d82519925defcd6f0d"
|
|
|
4208
4208
|
|
|
4209
4209
|
[[package]]
|
|
4210
4210
|
name = "sql_generation"
|
|
4211
|
-
version = "0.3.0-pre.
|
|
4211
|
+
version = "0.3.0-pre.7"
|
|
4212
4212
|
dependencies = [
|
|
4213
4213
|
"anarchist-readable-name-generator-lib 0.2.0",
|
|
4214
4214
|
"anyhow",
|
|
@@ -4836,7 +4836,7 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
|
4836
4836
|
|
|
4837
4837
|
[[package]]
|
|
4838
4838
|
name = "turso"
|
|
4839
|
-
version = "0.3.0-pre.
|
|
4839
|
+
version = "0.3.0-pre.7"
|
|
4840
4840
|
dependencies = [
|
|
4841
4841
|
"mimalloc",
|
|
4842
4842
|
"rand 0.9.2",
|
|
@@ -4851,7 +4851,7 @@ dependencies = [
|
|
|
4851
4851
|
|
|
4852
4852
|
[[package]]
|
|
4853
4853
|
name = "turso-java"
|
|
4854
|
-
version = "0.3.0-pre.
|
|
4854
|
+
version = "0.3.0-pre.7"
|
|
4855
4855
|
dependencies = [
|
|
4856
4856
|
"jni",
|
|
4857
4857
|
"thiserror 2.0.16",
|
|
@@ -4860,7 +4860,7 @@ dependencies = [
|
|
|
4860
4860
|
|
|
4861
4861
|
[[package]]
|
|
4862
4862
|
name = "turso_cli"
|
|
4863
|
-
version = "0.3.0-pre.
|
|
4863
|
+
version = "0.3.0-pre.7"
|
|
4864
4864
|
dependencies = [
|
|
4865
4865
|
"anyhow",
|
|
4866
4866
|
"cfg-if",
|
|
@@ -4896,7 +4896,7 @@ dependencies = [
|
|
|
4896
4896
|
|
|
4897
4897
|
[[package]]
|
|
4898
4898
|
name = "turso_core"
|
|
4899
|
-
version = "0.3.0-pre.
|
|
4899
|
+
version = "0.3.0-pre.7"
|
|
4900
4900
|
dependencies = [
|
|
4901
4901
|
"aegis",
|
|
4902
4902
|
"aes",
|
|
@@ -4957,7 +4957,7 @@ dependencies = [
|
|
|
4957
4957
|
|
|
4958
4958
|
[[package]]
|
|
4959
4959
|
name = "turso_dart"
|
|
4960
|
-
version = "0.3.0-pre.
|
|
4960
|
+
version = "0.3.0-pre.7"
|
|
4961
4961
|
dependencies = [
|
|
4962
4962
|
"flutter_rust_bridge",
|
|
4963
4963
|
"turso_core",
|
|
@@ -4965,7 +4965,7 @@ dependencies = [
|
|
|
4965
4965
|
|
|
4966
4966
|
[[package]]
|
|
4967
4967
|
name = "turso_ext"
|
|
4968
|
-
version = "0.3.0-pre.
|
|
4968
|
+
version = "0.3.0-pre.7"
|
|
4969
4969
|
dependencies = [
|
|
4970
4970
|
"chrono",
|
|
4971
4971
|
"getrandom 0.3.2",
|
|
@@ -4974,7 +4974,7 @@ dependencies = [
|
|
|
4974
4974
|
|
|
4975
4975
|
[[package]]
|
|
4976
4976
|
name = "turso_ext_tests"
|
|
4977
|
-
version = "0.3.0-pre.
|
|
4977
|
+
version = "0.3.0-pre.7"
|
|
4978
4978
|
dependencies = [
|
|
4979
4979
|
"env_logger 0.11.7",
|
|
4980
4980
|
"lazy_static",
|
|
@@ -4985,7 +4985,7 @@ dependencies = [
|
|
|
4985
4985
|
|
|
4986
4986
|
[[package]]
|
|
4987
4987
|
name = "turso_macros"
|
|
4988
|
-
version = "0.3.0-pre.
|
|
4988
|
+
version = "0.3.0-pre.7"
|
|
4989
4989
|
dependencies = [
|
|
4990
4990
|
"proc-macro2",
|
|
4991
4991
|
"quote",
|
|
@@ -4994,7 +4994,7 @@ dependencies = [
|
|
|
4994
4994
|
|
|
4995
4995
|
[[package]]
|
|
4996
4996
|
name = "turso_node"
|
|
4997
|
-
version = "0.3.0-pre.
|
|
4997
|
+
version = "0.3.0-pre.7"
|
|
4998
4998
|
dependencies = [
|
|
4999
4999
|
"chrono",
|
|
5000
5000
|
"napi",
|
|
@@ -5007,7 +5007,7 @@ dependencies = [
|
|
|
5007
5007
|
|
|
5008
5008
|
[[package]]
|
|
5009
5009
|
name = "turso_parser"
|
|
5010
|
-
version = "0.3.0-pre.
|
|
5010
|
+
version = "0.3.0-pre.7"
|
|
5011
5011
|
dependencies = [
|
|
5012
5012
|
"bitflags 2.9.4",
|
|
5013
5013
|
"criterion",
|
|
@@ -5023,7 +5023,7 @@ dependencies = [
|
|
|
5023
5023
|
|
|
5024
5024
|
[[package]]
|
|
5025
5025
|
name = "turso_sqlite3"
|
|
5026
|
-
version = "0.3.0-pre.
|
|
5026
|
+
version = "0.3.0-pre.7"
|
|
5027
5027
|
dependencies = [
|
|
5028
5028
|
"env_logger 0.11.7",
|
|
5029
5029
|
"libc",
|
|
@@ -5036,7 +5036,7 @@ dependencies = [
|
|
|
5036
5036
|
|
|
5037
5037
|
[[package]]
|
|
5038
5038
|
name = "turso_stress"
|
|
5039
|
-
version = "0.3.0-pre.
|
|
5039
|
+
version = "0.3.0-pre.7"
|
|
5040
5040
|
dependencies = [
|
|
5041
5041
|
"anarchist-readable-name-generator-lib 0.1.2",
|
|
5042
5042
|
"antithesis_sdk",
|
|
@@ -5053,7 +5053,7 @@ dependencies = [
|
|
|
5053
5053
|
|
|
5054
5054
|
[[package]]
|
|
5055
5055
|
name = "turso_sync_engine"
|
|
5056
|
-
version = "0.3.0-pre.
|
|
5056
|
+
version = "0.3.0-pre.7"
|
|
5057
5057
|
dependencies = [
|
|
5058
5058
|
"base64 0.22.1",
|
|
5059
5059
|
"bytes",
|
|
@@ -5080,7 +5080,7 @@ dependencies = [
|
|
|
5080
5080
|
|
|
5081
5081
|
[[package]]
|
|
5082
5082
|
name = "turso_sync_js"
|
|
5083
|
-
version = "0.3.0-pre.
|
|
5083
|
+
version = "0.3.0-pre.7"
|
|
5084
5084
|
dependencies = [
|
|
5085
5085
|
"genawaiter",
|
|
5086
5086
|
"napi",
|
|
@@ -5095,7 +5095,7 @@ dependencies = [
|
|
|
5095
5095
|
|
|
5096
5096
|
[[package]]
|
|
5097
5097
|
name = "turso_whopper"
|
|
5098
|
-
version = "0.3.0-pre.
|
|
5098
|
+
version = "0.3.0-pre.7"
|
|
5099
5099
|
dependencies = [
|
|
5100
5100
|
"anyhow",
|
|
5101
5101
|
"clap",
|
|
@@ -8,29 +8,29 @@ exclude = [
|
|
|
8
8
|
]
|
|
9
9
|
|
|
10
10
|
[workspace.package]
|
|
11
|
-
version = "0.3.0-pre.
|
|
11
|
+
version = "0.3.0-pre.7"
|
|
12
12
|
authors = ["the Limbo authors"]
|
|
13
13
|
edition = "2021"
|
|
14
14
|
license = "MIT"
|
|
15
15
|
repository = "https://github.com/tursodatabase/turso"
|
|
16
16
|
|
|
17
17
|
[workspace.dependencies]
|
|
18
|
-
turso = { path = "bindings/rust", version = "0.3.0-pre.
|
|
19
|
-
turso_node = { path = "bindings/javascript", version = "0.3.0-pre.
|
|
20
|
-
limbo_completion = { path = "extensions/completion", version = "0.3.0-pre.
|
|
21
|
-
turso_core = { path = "core", version = "0.3.0-pre.
|
|
22
|
-
turso_sync_engine = { path = "sync/engine", version = "0.3.0-pre.
|
|
23
|
-
limbo_crypto = { path = "extensions/crypto", version = "0.3.0-pre.
|
|
24
|
-
limbo_csv = { path = "extensions/csv", version = "0.3.0-pre.
|
|
25
|
-
turso_ext = { path = "extensions/core", version = "0.3.0-pre.
|
|
26
|
-
turso_ext_tests = { path = "extensions/tests", version = "0.3.0-pre.
|
|
27
|
-
limbo_ipaddr = { path = "extensions/ipaddr", version = "0.3.0-pre.
|
|
28
|
-
turso_macros = { path = "macros", version = "0.3.0-pre.
|
|
29
|
-
limbo_percentile = { path = "extensions/percentile", version = "0.3.0-pre.
|
|
30
|
-
limbo_regexp = { path = "extensions/regexp", version = "0.3.0-pre.
|
|
31
|
-
limbo_uuid = { path = "extensions/uuid", version = "0.3.0-pre.
|
|
32
|
-
turso_parser = { path = "parser", version = "0.3.0-pre.
|
|
33
|
-
limbo_fuzzy = { path = "extensions/fuzzy", version = "0.3.0-pre.
|
|
18
|
+
turso = { path = "bindings/rust", version = "0.3.0-pre.7" }
|
|
19
|
+
turso_node = { path = "bindings/javascript", version = "0.3.0-pre.7" }
|
|
20
|
+
limbo_completion = { path = "extensions/completion", version = "0.3.0-pre.7" }
|
|
21
|
+
turso_core = { path = "core", version = "0.3.0-pre.7" }
|
|
22
|
+
turso_sync_engine = { path = "sync/engine", version = "0.3.0-pre.7" }
|
|
23
|
+
limbo_crypto = { path = "extensions/crypto", version = "0.3.0-pre.7" }
|
|
24
|
+
limbo_csv = { path = "extensions/csv", version = "0.3.0-pre.7" }
|
|
25
|
+
turso_ext = { path = "extensions/core", version = "0.3.0-pre.7" }
|
|
26
|
+
turso_ext_tests = { path = "extensions/tests", version = "0.3.0-pre.7" }
|
|
27
|
+
limbo_ipaddr = { path = "extensions/ipaddr", version = "0.3.0-pre.7" }
|
|
28
|
+
turso_macros = { path = "macros", version = "0.3.0-pre.7" }
|
|
29
|
+
limbo_percentile = { path = "extensions/percentile", version = "0.3.0-pre.7" }
|
|
30
|
+
limbo_regexp = { path = "extensions/regexp", version = "0.3.0-pre.7" }
|
|
31
|
+
limbo_uuid = { path = "extensions/uuid", version = "0.3.0-pre.7" }
|
|
32
|
+
turso_parser = { path = "parser", version = "0.3.0-pre.7" }
|
|
33
|
+
limbo_fuzzy = { path = "extensions/fuzzy", version = "0.3.0-pre.7" }
|
|
34
34
|
sql_generation = { path = "sql_generation" }
|
|
35
35
|
strum = { version = "0.26", features = ["derive"] }
|
|
36
36
|
strum_macros = "0.26"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pyturso-0.3.0rc6 → pyturso-0.3.0rc7}/core/translate/optimizer/lift_common_subexpressions.rs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|