pyturso 0.4.0rc18__tar.gz → 0.4.2__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.
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/Cargo.lock +451 -43
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/Cargo.toml +18 -21
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/PKG-INFO +2 -2
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/bindings/python/Cargo.toml +3 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/bindings/python/README.md +1 -1
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/bindings/python/py-bindings-sync.mdx +10 -6
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/bindings/python/src/lib.rs +3 -2
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/bindings/python/src/turso.rs +64 -20
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/bindings/python/src/turso_sync.rs +81 -72
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/bindings/python/tests/test_database.py +43 -1
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/bindings/python/tests/test_database_aio.py +11 -2
- pyturso-0.4.2/bindings/python/tests/test_database_sync.py +234 -0
- pyturso-0.4.2/bindings/python/tests/test_database_sync_aio.py +185 -0
- pyturso-0.4.2/bindings/python/tests/utils.py +75 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2/bindings/python}/turso/__init__.py +2 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2/bindings/python}/turso/aio/sync/__init__.py +2 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2/bindings/python}/turso/lib.py +13 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2/bindings/python}/turso/lib_aio.py +2 -4
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/bindings/python/turso/lib_sync.py +37 -22
- {pyturso-0.4.0rc18 → pyturso-0.4.2/bindings/python}/turso/lib_sync_aio.py +2 -2
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/bindings/python/turso/sync/__init__.py +2 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2/bindings/python}/turso/worker.py +1 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/Cargo.toml +5 -0
- pyturso-0.4.2/core/assert.rs +70 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/benches/benchmark.rs +31 -22
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/benches/json_benchmark.rs +6 -6
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/benches/mvcc_benchmark.rs +4 -1
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/benches/tpc_h_benchmark.rs +2 -2
- pyturso-0.4.2/core/busy.rs +416 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/error.rs +14 -4
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/ext/dynamic.rs +1 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/ext/mod.rs +3 -1
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/ext/vtab_xconnect.rs +30 -40
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/fast_lock.rs +3 -2
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/function.rs +159 -142
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/functions/datetime.rs +6 -7
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/functions/printf.rs +76 -32
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/incremental/compiler.rs +18 -8
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/incremental/cursor.rs +2 -4
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/incremental/operator.rs +9 -7
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/incremental/project_operator.rs +1 -1
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/incremental/view.rs +9 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/index_method/mod.rs +2 -2
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/index_method/toy_vector_sparse_ivf.rs +4 -4
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/io/completions.rs +13 -25
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/io/generic.rs +1 -1
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/io/io_uring.rs +65 -157
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/io/memory.rs +4 -3
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/io/mod.rs +79 -6
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/io/unix.rs +5 -10
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/io/windows.rs +1 -1
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/lib.rs +129 -600
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/mvcc/clock.rs +1 -1
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/mvcc/cursor.rs +275 -371
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/mvcc/database/checkpoint_state_machine.rs +48 -48
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/mvcc/database/mod.rs +189 -51
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/mvcc/database/tests.rs +88 -52
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/mvcc/persistent_storage/logical_log.rs +10 -2
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/pragma.rs +4 -0
- pyturso-0.4.2/core/pseudo.rs +33 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/schema.rs +122 -57
- pyturso-0.4.2/core/statement.rs +479 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/stats.rs +49 -60
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/storage/btree.rs +1080 -1215
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/storage/buffer_pool.rs +5 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/storage/page_cache.rs +70 -73
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/storage/pager.rs +863 -278
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/storage/sqlite3_ondisk.rs +109 -549
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/storage/subjournal.rs +2 -2
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/storage/wal.rs +596 -330
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/translate/aggregation.rs +48 -35
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/translate/alter.rs +58 -32
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/translate/analyze.rs +7 -7
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/translate/collate.rs +5 -1
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/translate/compound_select.rs +4 -4
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/translate/display.rs +5 -3
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/translate/emitter.rs +99 -41
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/translate/expr.rs +61 -8
- pyturso-0.4.2/core/translate/fkeys.rs +1924 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/translate/group_by.rs +7 -4
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/translate/index.rs +12 -13
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/translate/insert.rs +500 -386
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/translate/logical.rs +5 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/translate/main_loop.rs +61 -19
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/translate/mod.rs +2 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/translate/optimizer/join.rs +3 -2
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/translate/optimizer/mod.rs +19 -7
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/translate/order_by.rs +16 -21
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/translate/plan.rs +465 -40
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/translate/planner.rs +1 -1
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/translate/pragma.rs +16 -1
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/translate/result_row.rs +7 -7
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/translate/schema.rs +88 -80
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/translate/select.rs +85 -52
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/translate/trigger.rs +20 -1
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/translate/update.rs +30 -21
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/translate/upsert.rs +54 -14
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/translate/values.rs +4 -4
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/translate/view.rs +19 -8
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/translate/window.rs +6 -4
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/types.rs +159 -84
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/util.rs +67 -69
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/vdbe/affinity.rs +13 -7
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/vdbe/builder.rs +77 -57
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/vdbe/execute.rs +397 -232
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/vdbe/explain.rs +18 -21
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/vdbe/hash_table.rs +2 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/vdbe/insn.rs +39 -30
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/vdbe/mod.rs +32 -15
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/vdbe/sorter.rs +217 -73
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/vtab.rs +10 -6
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/macros/src/lib.rs +1 -1
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/macros/src/test.rs +13 -20
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/parser/Cargo.toml +1 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/parser/src/ast/fmt.rs +5 -3
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/parser/src/ast.rs +2 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/parser/src/error.rs +2 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/parser/src/lexer.rs +285 -646
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/parser/src/parser.rs +266 -211
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/parser/src/token.rs +19 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/sdk-kit/Cargo.toml +5 -1
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/sdk-kit/src/bindings.rs +31 -10
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/sdk-kit/src/capi.rs +116 -31
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/sdk-kit/src/lib.rs +1 -4
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/sdk-kit/src/rsapi.rs +327 -244
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/sdk-kit/turso.h +24 -2
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/sdk-kit-macros/Cargo.toml +1 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/sync/engine/Cargo.toml +1 -1
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/sync/engine/src/database_sync_engine.rs +75 -67
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/sync/engine/src/database_sync_engine_io.rs +1 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/sync/engine/src/database_sync_lazy_storage.rs +96 -47
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/sync/engine/src/database_sync_operations.rs +188 -143
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/sync/engine/src/database_tape.rs +45 -29
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/sync/engine/src/errors.rs +0 -7
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/sync/engine/src/io_operations.rs +1 -1
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/sync/engine/src/server_proto.rs +9 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/sync/engine/src/sparse_io.rs +1 -1
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/sync/engine/src/types.rs +61 -3
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/sync/sdk-kit/Cargo.toml +1 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/sync/sdk-kit/src/bindings.rs +21 -23
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/sync/sdk-kit/src/capi.rs +0 -15
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/sync/sdk-kit/src/rsapi.rs +76 -70
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/sync/sdk-kit/src/sync_engine_io.rs +16 -25
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/sync/sdk-kit/src/turso_async_operation.rs +62 -40
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/sync/sdk-kit/turso_sync.h +6 -11
- {pyturso-0.4.0rc18/bindings/python → pyturso-0.4.2}/turso/__init__.py +2 -0
- {pyturso-0.4.0rc18/bindings/python → pyturso-0.4.2}/turso/aio/sync/__init__.py +2 -0
- {pyturso-0.4.0rc18/bindings/python → pyturso-0.4.2}/turso/lib.py +13 -0
- {pyturso-0.4.0rc18/bindings/python → pyturso-0.4.2}/turso/lib_aio.py +2 -4
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/turso/lib_sync.py +37 -22
- {pyturso-0.4.0rc18/bindings/python → pyturso-0.4.2}/turso/lib_sync_aio.py +2 -2
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/turso/sync/__init__.py +2 -0
- {pyturso-0.4.0rc18/bindings/python → pyturso-0.4.2}/turso/worker.py +1 -0
- pyturso-0.4.0rc18/bindings/python/tests/test_database_sync.py +0 -241
- pyturso-0.4.0rc18/bindings/python/tests/test_database_sync_aio.py +0 -248
- pyturso-0.4.0rc18/bindings/rust/Cargo.toml +0 -31
- pyturso-0.4.0rc18/bindings/rust/README.md +0 -158
- pyturso-0.4.0rc18/bindings/rust/examples/example.rs +0 -49
- pyturso-0.4.0rc18/bindings/rust/examples/example_struct.rs +0 -60
- pyturso-0.4.0rc18/bindings/rust/src/connection.rs +0 -281
- pyturso-0.4.0rc18/bindings/rust/src/lib.rs +0 -573
- pyturso-0.4.0rc18/bindings/rust/src/params.rs +0 -315
- pyturso-0.4.0rc18/bindings/rust/src/rows.rs +0 -129
- pyturso-0.4.0rc18/bindings/rust/src/transaction.rs +0 -519
- pyturso-0.4.0rc18/bindings/rust/src/value.rs +0 -388
- pyturso-0.4.0rc18/bindings/rust/tests/integration_tests.rs +0 -533
- pyturso-0.4.0rc18/core/assert.rs +0 -25
- pyturso-0.4.0rc18/core/pseudo.rs +0 -39
- pyturso-0.4.0rc18/core/translate/fkeys.rs +0 -938
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/bindings/python/build.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/bindings/python/example.py +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/bindings/python/py-bindings-db-aio.mdx +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/bindings/python/py-bindings-db.mdx +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/bindings/python/py-bindings-sync-aio.mdx +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/bindings/python/py-bindings-tests-aio.mdx +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/bindings/python/py-bindings-tests.mdx +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/bindings/python/requirements-dev.txt +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/bindings/python/requirements.txt +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/bindings/python/tests/__init__.py +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/bindings/python/turso/aio/__init__.py +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/bindings/python/turso/py.typed +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/build.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/functions/mod.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/functions/strftime.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/incremental/aggregate_operator.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/incremental/dbsp.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/incremental/expr_compiler.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/incremental/filter_operator.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/incremental/input_operator.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/incremental/join_operator.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/incremental/merge_operator.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/incremental/mod.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/incremental/persistence.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/index_method/backing_btree.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/info.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/io/clock.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/io/common.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/io/vfs.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/json/cache.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/json/error.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/json/jsonb.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/json/mod.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/json/ops.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/json/path.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/json/vtab.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/mvcc/mod.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/mvcc/persistent_storage/mod.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/numeric/mod.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/numeric/nonnan.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/parameters.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/series.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/state_machine.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/storage/checksum.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/storage/database.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/storage/encryption.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/storage/journal_mode.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/storage/mod.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/storage/slot_bitmap.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/storage/state_machines.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/time/internal.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/time/mod.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/translate/attach.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/translate/delete.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/translate/expression_index.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/translate/integrity_check.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/translate/optimizer/OPTIMIZER.md +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/translate/optimizer/access_method.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/translate/optimizer/constraints.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/translate/optimizer/cost.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/translate/optimizer/lift_common_subexpressions.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/translate/optimizer/order.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/translate/rollback.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/translate/subquery.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/translate/transaction.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/translate/trigger_exec.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/uuid.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/vdbe/bloom_filter.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/vdbe/likeop.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/vdbe/metrics.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/vdbe/rowset.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/vdbe/value.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/vector/mod.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/vector/operations/concat.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/vector/operations/convert.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/vector/operations/distance_cos.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/vector/operations/distance_dot.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/vector/operations/distance_l2.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/vector/operations/jaccard.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/vector/operations/mod.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/vector/operations/serialize.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/vector/operations/slice.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/vector/operations/text.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/core/vector/vector_types.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/extensions/core/Cargo.toml +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/extensions/core/README.md +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/extensions/core/build.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/extensions/core/src/functions.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/extensions/core/src/lib.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/extensions/core/src/types.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/extensions/core/src/vfs_modules.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/extensions/core/src/vtabs.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/macros/Cargo.toml +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/macros/src/atomic_enum.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/macros/src/ext/agg_derive.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/macros/src/ext/match_ignore_ascii_case.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/macros/src/ext/mod.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/macros/src/ext/scalars.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/macros/src/ext/vfs_derive.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/macros/src/ext/vtab_derive.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/parser/README.md +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/parser/benches/parser_benchmark.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/parser/src/ast/check.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/parser/src/lib.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/pyproject.toml +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/sdk-kit/README.md +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/sdk-kit/bindgen.sh +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/sdk-kit/readme-sdk-kit.mdx +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/sdk-kit-macros/src/lib.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/sync/engine/.gitignore +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/sync/engine/src/database_replay_generator.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/sync/engine/src/lib.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/sync/engine/src/wal_session.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/sync/sdk-kit/bindgen.sh +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/sync/sdk-kit/src/lib.rs +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/turso/aio/__init__.py +0 -0
- {pyturso-0.4.0rc18 → pyturso-0.4.2}/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.
|
|
549
|
+
version = "1.11.0"
|
|
541
550
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
542
|
-
checksum = "
|
|
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.
|
|
899
|
+
version = "0.4.2"
|
|
881
900
|
dependencies = [
|
|
882
901
|
"anyhow",
|
|
883
902
|
"assert_cmd",
|
|
@@ -1383,7 +1402,7 @@ dependencies = [
|
|
|
1383
1402
|
"libc",
|
|
1384
1403
|
"option-ext",
|
|
1385
1404
|
"redox_users 0.5.0",
|
|
1386
|
-
"windows-sys 0.
|
|
1405
|
+
"windows-sys 0.61.1",
|
|
1387
1406
|
]
|
|
1388
1407
|
|
|
1389
1408
|
[[package]]
|
|
@@ -1460,6 +1479,15 @@ version = "1.0.0"
|
|
|
1460
1479
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1461
1480
|
checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
|
|
1462
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
|
+
|
|
1463
1491
|
[[package]]
|
|
1464
1492
|
name = "encryption-throughput"
|
|
1465
1493
|
version = "0.1.0"
|
|
@@ -1675,6 +1703,21 @@ version = "0.1.5"
|
|
|
1675
1703
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1676
1704
|
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
1677
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
|
+
|
|
1678
1721
|
[[package]]
|
|
1679
1722
|
name = "form_urlencoded"
|
|
1680
1723
|
version = "1.2.1"
|
|
@@ -2047,9 +2090,9 @@ checksum = "135b12329e5e3ce057a9f972339ea52bc954fe1e9358ef27f95e89716fbc5424"
|
|
|
2047
2090
|
|
|
2048
2091
|
[[package]]
|
|
2049
2092
|
name = "hyper"
|
|
2050
|
-
version = "1.
|
|
2093
|
+
version = "1.8.1"
|
|
2051
2094
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2052
|
-
checksum = "
|
|
2095
|
+
checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
|
|
2053
2096
|
dependencies = [
|
|
2054
2097
|
"atomic-waker",
|
|
2055
2098
|
"bytes",
|
|
@@ -2068,6 +2111,22 @@ dependencies = [
|
|
|
2068
2111
|
"want",
|
|
2069
2112
|
]
|
|
2070
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
|
+
|
|
2071
2130
|
[[package]]
|
|
2072
2131
|
name = "hyper-timeout"
|
|
2073
2132
|
version = "0.5.2"
|
|
@@ -2081,12 +2140,29 @@ dependencies = [
|
|
|
2081
2140
|
"tower-service",
|
|
2082
2141
|
]
|
|
2083
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
|
+
|
|
2084
2159
|
[[package]]
|
|
2085
2160
|
name = "hyper-util"
|
|
2086
|
-
version = "0.1.
|
|
2161
|
+
version = "0.1.19"
|
|
2087
2162
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2088
|
-
checksum = "
|
|
2163
|
+
checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f"
|
|
2089
2164
|
dependencies = [
|
|
2165
|
+
"base64 0.22.1",
|
|
2090
2166
|
"bytes",
|
|
2091
2167
|
"futures-channel",
|
|
2092
2168
|
"futures-core",
|
|
@@ -2094,12 +2170,16 @@ dependencies = [
|
|
|
2094
2170
|
"http",
|
|
2095
2171
|
"http-body",
|
|
2096
2172
|
"hyper",
|
|
2173
|
+
"ipnet",
|
|
2097
2174
|
"libc",
|
|
2175
|
+
"percent-encoding",
|
|
2098
2176
|
"pin-project-lite",
|
|
2099
2177
|
"socket2 0.6.0",
|
|
2178
|
+
"system-configuration",
|
|
2100
2179
|
"tokio",
|
|
2101
2180
|
"tower-service",
|
|
2102
2181
|
"tracing",
|
|
2182
|
+
"windows-registry",
|
|
2103
2183
|
]
|
|
2104
2184
|
|
|
2105
2185
|
[[package]]
|
|
@@ -2384,12 +2464,28 @@ dependencies = [
|
|
|
2384
2464
|
"libc",
|
|
2385
2465
|
]
|
|
2386
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
|
+
|
|
2387
2473
|
[[package]]
|
|
2388
2474
|
name = "ipnetwork"
|
|
2389
2475
|
version = "0.21.1"
|
|
2390
2476
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2391
2477
|
checksum = "cf370abdafd54d13e54a620e8c3e1145f28e46cc9d704bc6d94414559df41763"
|
|
2392
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
|
+
|
|
2393
2489
|
[[package]]
|
|
2394
2490
|
name = "is-terminal"
|
|
2395
2491
|
version = "0.4.16"
|
|
@@ -2633,7 +2729,7 @@ dependencies = [
|
|
|
2633
2729
|
|
|
2634
2730
|
[[package]]
|
|
2635
2731
|
name = "limbo_completion"
|
|
2636
|
-
version = "0.4.
|
|
2732
|
+
version = "0.4.2"
|
|
2637
2733
|
dependencies = [
|
|
2638
2734
|
"mimalloc",
|
|
2639
2735
|
"turso_ext",
|
|
@@ -2641,7 +2737,7 @@ dependencies = [
|
|
|
2641
2737
|
|
|
2642
2738
|
[[package]]
|
|
2643
2739
|
name = "limbo_crypto"
|
|
2644
|
-
version = "0.4.
|
|
2740
|
+
version = "0.4.2"
|
|
2645
2741
|
dependencies = [
|
|
2646
2742
|
"blake3",
|
|
2647
2743
|
"data-encoding",
|
|
@@ -2654,7 +2750,7 @@ dependencies = [
|
|
|
2654
2750
|
|
|
2655
2751
|
[[package]]
|
|
2656
2752
|
name = "limbo_csv"
|
|
2657
|
-
version = "0.4.
|
|
2753
|
+
version = "0.4.2"
|
|
2658
2754
|
dependencies = [
|
|
2659
2755
|
"csv",
|
|
2660
2756
|
"mimalloc",
|
|
@@ -2664,7 +2760,7 @@ dependencies = [
|
|
|
2664
2760
|
|
|
2665
2761
|
[[package]]
|
|
2666
2762
|
name = "limbo_fuzzy"
|
|
2667
|
-
version = "0.4.
|
|
2763
|
+
version = "0.4.2"
|
|
2668
2764
|
dependencies = [
|
|
2669
2765
|
"mimalloc",
|
|
2670
2766
|
"turso_ext",
|
|
@@ -2672,7 +2768,7 @@ dependencies = [
|
|
|
2672
2768
|
|
|
2673
2769
|
[[package]]
|
|
2674
2770
|
name = "limbo_ipaddr"
|
|
2675
|
-
version = "0.4.
|
|
2771
|
+
version = "0.4.2"
|
|
2676
2772
|
dependencies = [
|
|
2677
2773
|
"ipnetwork",
|
|
2678
2774
|
"mimalloc",
|
|
@@ -2681,7 +2777,7 @@ dependencies = [
|
|
|
2681
2777
|
|
|
2682
2778
|
[[package]]
|
|
2683
2779
|
name = "limbo_percentile"
|
|
2684
|
-
version = "0.4.
|
|
2780
|
+
version = "0.4.2"
|
|
2685
2781
|
dependencies = [
|
|
2686
2782
|
"mimalloc",
|
|
2687
2783
|
"turso_ext",
|
|
@@ -2689,7 +2785,7 @@ dependencies = [
|
|
|
2689
2785
|
|
|
2690
2786
|
[[package]]
|
|
2691
2787
|
name = "limbo_regexp"
|
|
2692
|
-
version = "0.4.
|
|
2788
|
+
version = "0.4.2"
|
|
2693
2789
|
dependencies = [
|
|
2694
2790
|
"mimalloc",
|
|
2695
2791
|
"regex",
|
|
@@ -2698,7 +2794,7 @@ dependencies = [
|
|
|
2698
2794
|
|
|
2699
2795
|
[[package]]
|
|
2700
2796
|
name = "limbo_sim"
|
|
2701
|
-
version = "0.4.
|
|
2797
|
+
version = "0.4.2"
|
|
2702
2798
|
dependencies = [
|
|
2703
2799
|
"anyhow",
|
|
2704
2800
|
"bitflags 2.9.4",
|
|
@@ -2735,7 +2831,7 @@ dependencies = [
|
|
|
2735
2831
|
|
|
2736
2832
|
[[package]]
|
|
2737
2833
|
name = "limbo_sqlite_test_ext"
|
|
2738
|
-
version = "0.4.
|
|
2834
|
+
version = "0.4.2"
|
|
2739
2835
|
dependencies = [
|
|
2740
2836
|
"cc",
|
|
2741
2837
|
]
|
|
@@ -2839,9 +2935,9 @@ checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771"
|
|
|
2839
2935
|
|
|
2840
2936
|
[[package]]
|
|
2841
2937
|
name = "memchr"
|
|
2842
|
-
version = "2.7.
|
|
2938
|
+
version = "2.7.6"
|
|
2843
2939
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2844
|
-
checksum = "
|
|
2940
|
+
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
2845
2941
|
|
|
2846
2942
|
[[package]]
|
|
2847
2943
|
name = "memmap2"
|
|
@@ -3008,6 +3104,23 @@ dependencies = [
|
|
|
3008
3104
|
"libloading",
|
|
3009
3105
|
]
|
|
3010
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
|
+
|
|
3011
3124
|
[[package]]
|
|
3012
3125
|
name = "nibble_vec"
|
|
3013
3126
|
version = "0.1.0"
|
|
@@ -3175,6 +3288,50 @@ version = "0.3.1"
|
|
|
3175
3288
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3176
3289
|
checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
|
|
3177
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
|
+
|
|
3178
3335
|
[[package]]
|
|
3179
3336
|
name = "option-ext"
|
|
3180
3337
|
version = "0.2.0"
|
|
@@ -3561,7 +3718,7 @@ dependencies = [
|
|
|
3561
3718
|
|
|
3562
3719
|
[[package]]
|
|
3563
3720
|
name = "py-turso"
|
|
3564
|
-
version = "0.4.
|
|
3721
|
+
version = "0.4.2"
|
|
3565
3722
|
dependencies = [
|
|
3566
3723
|
"anyhow",
|
|
3567
3724
|
"pyo3",
|
|
@@ -3870,6 +4027,46 @@ version = "1.9.3"
|
|
|
3870
4027
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3871
4028
|
checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2"
|
|
3872
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
|
+
|
|
3873
4070
|
[[package]]
|
|
3874
4071
|
name = "rgb"
|
|
3875
4072
|
version = "0.8.50"
|
|
@@ -4009,6 +4206,39 @@ dependencies = [
|
|
|
4009
4206
|
"windows-sys 0.59.0",
|
|
4010
4207
|
]
|
|
4011
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
|
+
|
|
4012
4242
|
[[package]]
|
|
4013
4243
|
name = "rustversion"
|
|
4014
4244
|
version = "1.0.20"
|
|
@@ -4064,6 +4294,15 @@ dependencies = [
|
|
|
4064
4294
|
"winapi-util",
|
|
4065
4295
|
]
|
|
4066
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
|
+
|
|
4067
4306
|
[[package]]
|
|
4068
4307
|
name = "schemars"
|
|
4069
4308
|
version = "0.8.22"
|
|
@@ -4120,6 +4359,29 @@ version = "1.2.0"
|
|
|
4120
4359
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4121
4360
|
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
4122
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
|
+
|
|
4123
4385
|
[[package]]
|
|
4124
4386
|
name = "semver"
|
|
4125
4387
|
version = "1.0.26"
|
|
@@ -4178,6 +4440,18 @@ dependencies = [
|
|
|
4178
4440
|
"serde",
|
|
4179
4441
|
]
|
|
4180
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
|
+
|
|
4181
4455
|
[[package]]
|
|
4182
4456
|
name = "sha1_smol"
|
|
4183
4457
|
version = "1.0.1"
|
|
@@ -4321,7 +4595,7 @@ checksum = "d372029cb5195f9ab4e4b9aef550787dce78b124fcaee8d82519925defcd6f0d"
|
|
|
4321
4595
|
|
|
4322
4596
|
[[package]]
|
|
4323
4597
|
name = "sql_generation"
|
|
4324
|
-
version = "0.4.
|
|
4598
|
+
version = "0.4.2"
|
|
4325
4599
|
dependencies = [
|
|
4326
4600
|
"anarchist-readable-name-generator-lib",
|
|
4327
4601
|
"anyhow",
|
|
@@ -4468,6 +4742,9 @@ name = "sync_wrapper"
|
|
|
4468
4742
|
version = "1.0.2"
|
|
4469
4743
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4470
4744
|
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
4745
|
+
dependencies = [
|
|
4746
|
+
"futures-core",
|
|
4747
|
+
]
|
|
4471
4748
|
|
|
4472
4749
|
[[package]]
|
|
4473
4750
|
name = "synstructure"
|
|
@@ -4501,6 +4778,27 @@ dependencies = [
|
|
|
4501
4778
|
"yaml-rust",
|
|
4502
4779
|
]
|
|
4503
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
|
+
|
|
4504
4802
|
[[package]]
|
|
4505
4803
|
name = "target-lexicon"
|
|
4506
4804
|
version = "0.13.2"
|
|
@@ -4726,6 +5024,26 @@ dependencies = [
|
|
|
4726
5024
|
"syn 2.0.100",
|
|
4727
5025
|
]
|
|
4728
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
|
+
|
|
4729
5047
|
[[package]]
|
|
4730
5048
|
name = "tokio-stream"
|
|
4731
5049
|
version = "0.1.17"
|
|
@@ -4852,6 +5170,25 @@ dependencies = [
|
|
|
4852
5170
|
"futures-util",
|
|
4853
5171
|
"pin-project-lite",
|
|
4854
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",
|
|
4855
5192
|
"tower-layer",
|
|
4856
5193
|
"tower-service",
|
|
4857
5194
|
]
|
|
@@ -4923,6 +5260,16 @@ dependencies = [
|
|
|
4923
5260
|
"tracing-core",
|
|
4924
5261
|
]
|
|
4925
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
|
+
|
|
4926
5273
|
[[package]]
|
|
4927
5274
|
name = "tracing-subscriber"
|
|
4928
5275
|
version = "0.3.20"
|
|
@@ -4933,12 +5280,15 @@ dependencies = [
|
|
|
4933
5280
|
"nu-ansi-term",
|
|
4934
5281
|
"once_cell",
|
|
4935
5282
|
"regex-automata",
|
|
5283
|
+
"serde",
|
|
5284
|
+
"serde_json",
|
|
4936
5285
|
"sharded-slab",
|
|
4937
5286
|
"smallvec",
|
|
4938
5287
|
"thread_local",
|
|
4939
5288
|
"tracing",
|
|
4940
5289
|
"tracing-core",
|
|
4941
5290
|
"tracing-log",
|
|
5291
|
+
"tracing-serde",
|
|
4942
5292
|
]
|
|
4943
5293
|
|
|
4944
5294
|
[[package]]
|
|
@@ -4949,29 +5299,38 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
|
4949
5299
|
|
|
4950
5300
|
[[package]]
|
|
4951
5301
|
name = "turso"
|
|
4952
|
-
version = "0.4.
|
|
5302
|
+
version = "0.4.2"
|
|
4953
5303
|
dependencies = [
|
|
5304
|
+
"anyhow",
|
|
5305
|
+
"bytes",
|
|
5306
|
+
"http-body-util",
|
|
5307
|
+
"hyper",
|
|
5308
|
+
"hyper-tls",
|
|
5309
|
+
"hyper-util",
|
|
4954
5310
|
"mimalloc",
|
|
4955
5311
|
"rand 0.9.2",
|
|
4956
5312
|
"rand_chacha 0.9.0",
|
|
5313
|
+
"reqwest",
|
|
5314
|
+
"serde_json",
|
|
4957
5315
|
"tempfile",
|
|
4958
5316
|
"thiserror 2.0.16",
|
|
4959
5317
|
"tokio",
|
|
4960
5318
|
"tracing",
|
|
4961
5319
|
"tracing-subscriber",
|
|
4962
|
-
"
|
|
5320
|
+
"turso_sdk_kit",
|
|
5321
|
+
"turso_sync_sdk_kit",
|
|
4963
5322
|
]
|
|
4964
5323
|
|
|
4965
5324
|
[[package]]
|
|
4966
5325
|
name = "turso-dotnet"
|
|
4967
|
-
version = "0.4.
|
|
5326
|
+
version = "0.4.2"
|
|
4968
5327
|
dependencies = [
|
|
4969
5328
|
"turso_core",
|
|
4970
5329
|
]
|
|
4971
5330
|
|
|
4972
5331
|
[[package]]
|
|
4973
5332
|
name = "turso-java"
|
|
4974
|
-
version = "0.4.
|
|
5333
|
+
version = "0.4.2"
|
|
4975
5334
|
dependencies = [
|
|
4976
5335
|
"jni",
|
|
4977
5336
|
"thiserror 2.0.16",
|
|
@@ -4980,9 +5339,10 @@ dependencies = [
|
|
|
4980
5339
|
|
|
4981
5340
|
[[package]]
|
|
4982
5341
|
name = "turso_cli"
|
|
4983
|
-
version = "0.4.
|
|
5342
|
+
version = "0.4.2"
|
|
4984
5343
|
dependencies = [
|
|
4985
5344
|
"anyhow",
|
|
5345
|
+
"bytes",
|
|
4986
5346
|
"cfg-if",
|
|
4987
5347
|
"clap",
|
|
4988
5348
|
"clap_complete",
|
|
@@ -4998,7 +5358,9 @@ dependencies = [
|
|
|
4998
5358
|
"miette",
|
|
4999
5359
|
"mimalloc",
|
|
5000
5360
|
"nu-ansi-term",
|
|
5361
|
+
"prost 0.14.1",
|
|
5001
5362
|
"rand 0.8.5",
|
|
5363
|
+
"roaring",
|
|
5002
5364
|
"rustyline",
|
|
5003
5365
|
"schemars 0.8.22",
|
|
5004
5366
|
"serde",
|
|
@@ -5012,12 +5374,13 @@ dependencies = [
|
|
|
5012
5374
|
"tracing-appender",
|
|
5013
5375
|
"tracing-subscriber",
|
|
5014
5376
|
"turso_core",
|
|
5377
|
+
"turso_sync_engine",
|
|
5015
5378
|
"validator",
|
|
5016
5379
|
]
|
|
5017
5380
|
|
|
5018
5381
|
[[package]]
|
|
5019
5382
|
name = "turso_core"
|
|
5020
|
-
version = "0.4.
|
|
5383
|
+
version = "0.4.2"
|
|
5021
5384
|
dependencies = [
|
|
5022
5385
|
"aegis",
|
|
5023
5386
|
"aes",
|
|
@@ -5026,7 +5389,9 @@ dependencies = [
|
|
|
5026
5389
|
"arc-swap",
|
|
5027
5390
|
"bitflags 2.9.4",
|
|
5028
5391
|
"bloom",
|
|
5392
|
+
"branches",
|
|
5029
5393
|
"built",
|
|
5394
|
+
"bumpalo",
|
|
5030
5395
|
"bytemuck",
|
|
5031
5396
|
"cfg_block",
|
|
5032
5397
|
"chrono",
|
|
@@ -5082,7 +5447,7 @@ dependencies = [
|
|
|
5082
5447
|
|
|
5083
5448
|
[[package]]
|
|
5084
5449
|
name = "turso_dart"
|
|
5085
|
-
version = "0.4.
|
|
5450
|
+
version = "0.4.2"
|
|
5086
5451
|
dependencies = [
|
|
5087
5452
|
"flutter_rust_bridge",
|
|
5088
5453
|
"turso_core",
|
|
@@ -5090,7 +5455,7 @@ dependencies = [
|
|
|
5090
5455
|
|
|
5091
5456
|
[[package]]
|
|
5092
5457
|
name = "turso_ext"
|
|
5093
|
-
version = "0.4.
|
|
5458
|
+
version = "0.4.2"
|
|
5094
5459
|
dependencies = [
|
|
5095
5460
|
"chrono",
|
|
5096
5461
|
"getrandom 0.3.2",
|
|
@@ -5099,7 +5464,7 @@ dependencies = [
|
|
|
5099
5464
|
|
|
5100
5465
|
[[package]]
|
|
5101
5466
|
name = "turso_ext_tests"
|
|
5102
|
-
version = "0.4.
|
|
5467
|
+
version = "0.4.2"
|
|
5103
5468
|
dependencies = [
|
|
5104
5469
|
"env_logger 0.11.7",
|
|
5105
5470
|
"lazy_static",
|
|
@@ -5110,7 +5475,7 @@ dependencies = [
|
|
|
5110
5475
|
|
|
5111
5476
|
[[package]]
|
|
5112
5477
|
name = "turso_macros"
|
|
5113
|
-
version = "0.4.
|
|
5478
|
+
version = "0.4.2"
|
|
5114
5479
|
dependencies = [
|
|
5115
5480
|
"proc-macro2",
|
|
5116
5481
|
"quote",
|
|
@@ -5119,7 +5484,7 @@ dependencies = [
|
|
|
5119
5484
|
|
|
5120
5485
|
[[package]]
|
|
5121
5486
|
name = "turso_node"
|
|
5122
|
-
version = "0.4.
|
|
5487
|
+
version = "0.4.2"
|
|
5123
5488
|
dependencies = [
|
|
5124
5489
|
"chrono",
|
|
5125
5490
|
"napi",
|
|
@@ -5132,11 +5497,12 @@ dependencies = [
|
|
|
5132
5497
|
|
|
5133
5498
|
[[package]]
|
|
5134
5499
|
name = "turso_parser"
|
|
5135
|
-
version = "0.4.
|
|
5500
|
+
version = "0.4.2"
|
|
5136
5501
|
dependencies = [
|
|
5137
5502
|
"bitflags 2.9.4",
|
|
5138
5503
|
"criterion",
|
|
5139
5504
|
"fallible-iterator",
|
|
5505
|
+
"memchr",
|
|
5140
5506
|
"miette",
|
|
5141
5507
|
"pprof",
|
|
5142
5508
|
"serde",
|
|
@@ -5148,7 +5514,7 @@ dependencies = [
|
|
|
5148
5514
|
|
|
5149
5515
|
[[package]]
|
|
5150
5516
|
name = "turso_sdk_kit"
|
|
5151
|
-
version = "0.4.
|
|
5517
|
+
version = "0.4.2"
|
|
5152
5518
|
dependencies = [
|
|
5153
5519
|
"bindgen",
|
|
5154
5520
|
"env_logger 0.11.7",
|
|
@@ -5161,7 +5527,7 @@ dependencies = [
|
|
|
5161
5527
|
|
|
5162
5528
|
[[package]]
|
|
5163
5529
|
name = "turso_sdk_kit_macros"
|
|
5164
|
-
version = "0.4.
|
|
5530
|
+
version = "0.4.2"
|
|
5165
5531
|
dependencies = [
|
|
5166
5532
|
"proc-macro2",
|
|
5167
5533
|
"quote",
|
|
@@ -5170,7 +5536,7 @@ dependencies = [
|
|
|
5170
5536
|
|
|
5171
5537
|
[[package]]
|
|
5172
5538
|
name = "turso_sqlite3"
|
|
5173
|
-
version = "0.4.
|
|
5539
|
+
version = "0.4.2"
|
|
5174
5540
|
dependencies = [
|
|
5175
5541
|
"env_logger 0.11.7",
|
|
5176
5542
|
"libc",
|
|
@@ -5183,7 +5549,7 @@ dependencies = [
|
|
|
5183
5549
|
|
|
5184
5550
|
[[package]]
|
|
5185
5551
|
name = "turso_stress"
|
|
5186
|
-
version = "0.4.
|
|
5552
|
+
version = "0.4.2"
|
|
5187
5553
|
dependencies = [
|
|
5188
5554
|
"antithesis_sdk",
|
|
5189
5555
|
"clap",
|
|
@@ -5192,7 +5558,6 @@ dependencies = [
|
|
|
5192
5558
|
"rusqlite",
|
|
5193
5559
|
"tempfile",
|
|
5194
5560
|
"tokio",
|
|
5195
|
-
"tracing",
|
|
5196
5561
|
"tracing-appender",
|
|
5197
5562
|
"tracing-subscriber",
|
|
5198
5563
|
"turso",
|
|
@@ -5200,7 +5565,7 @@ dependencies = [
|
|
|
5200
5565
|
|
|
5201
5566
|
[[package]]
|
|
5202
5567
|
name = "turso_sync_engine"
|
|
5203
|
-
version = "0.4.
|
|
5568
|
+
version = "0.4.2"
|
|
5204
5569
|
dependencies = [
|
|
5205
5570
|
"base64 0.22.1",
|
|
5206
5571
|
"bytes",
|
|
@@ -5220,7 +5585,6 @@ dependencies = [
|
|
|
5220
5585
|
"tokio",
|
|
5221
5586
|
"tracing",
|
|
5222
5587
|
"tracing-subscriber",
|
|
5223
|
-
"turso",
|
|
5224
5588
|
"turso_core",
|
|
5225
5589
|
"turso_parser",
|
|
5226
5590
|
"uuid",
|
|
@@ -5228,7 +5592,7 @@ dependencies = [
|
|
|
5228
5592
|
|
|
5229
5593
|
[[package]]
|
|
5230
5594
|
name = "turso_sync_js"
|
|
5231
|
-
version = "0.4.
|
|
5595
|
+
version = "0.4.2"
|
|
5232
5596
|
dependencies = [
|
|
5233
5597
|
"genawaiter",
|
|
5234
5598
|
"napi",
|
|
@@ -5243,7 +5607,7 @@ dependencies = [
|
|
|
5243
5607
|
|
|
5244
5608
|
[[package]]
|
|
5245
5609
|
name = "turso_sync_sdk_kit"
|
|
5246
|
-
version = "0.4.
|
|
5610
|
+
version = "0.4.2"
|
|
5247
5611
|
dependencies = [
|
|
5248
5612
|
"bindgen",
|
|
5249
5613
|
"env_logger 0.11.7",
|
|
@@ -5260,7 +5624,7 @@ dependencies = [
|
|
|
5260
5624
|
|
|
5261
5625
|
[[package]]
|
|
5262
5626
|
name = "turso_whopper"
|
|
5263
|
-
version = "0.4.
|
|
5627
|
+
version = "0.4.2"
|
|
5264
5628
|
dependencies = [
|
|
5265
5629
|
"anyhow",
|
|
5266
5630
|
"clap",
|
|
@@ -5634,6 +5998,35 @@ version = "0.2.0"
|
|
|
5634
5998
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5635
5999
|
checksum = "45e46c0661abb7180e7b9c281db115305d49ca1709ab8242adf09666d2173c65"
|
|
5636
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
|
+
|
|
5637
6030
|
[[package]]
|
|
5638
6031
|
name = "windows-sys"
|
|
5639
6032
|
version = "0.45.0"
|
|
@@ -5670,6 +6063,15 @@ dependencies = [
|
|
|
5670
6063
|
"windows-targets 0.52.6",
|
|
5671
6064
|
]
|
|
5672
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
|
+
|
|
5673
6075
|
[[package]]
|
|
5674
6076
|
name = "windows-targets"
|
|
5675
6077
|
version = "0.42.2"
|
|
@@ -5992,6 +6394,12 @@ dependencies = [
|
|
|
5992
6394
|
"synstructure",
|
|
5993
6395
|
]
|
|
5994
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
|
+
|
|
5995
6403
|
[[package]]
|
|
5996
6404
|
name = "zerovec"
|
|
5997
6405
|
version = "0.10.4"
|