libsql 0.1.2__tar.gz → 0.1.3__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.
- {libsql-0.1.2 → libsql-0.1.3}/Cargo.lock +23 -13
- {libsql-0.1.2 → libsql-0.1.3}/Cargo.toml +2 -2
- {libsql-0.1.2 → libsql-0.1.3}/PKG-INFO +1 -1
- {libsql-0.1.2 → libsql-0.1.3}/pyproject.toml +1 -1
- {libsql-0.1.2 → libsql-0.1.3}/.github/workflows/CI.yml +0 -0
- {libsql-0.1.2 → libsql-0.1.3}/.github/workflows/pr-tests.yml +0 -0
- {libsql-0.1.2 → libsql-0.1.3}/.gitignore +0 -0
- {libsql-0.1.2 → libsql-0.1.3}/CONTRIBUTING.md +0 -0
- {libsql-0.1.2 → libsql-0.1.3}/LICENSE.md +0 -0
- {libsql-0.1.2 → libsql-0.1.3}/README.md +0 -0
- {libsql-0.1.2 → libsql-0.1.3}/build.rs +0 -0
- {libsql-0.1.2 → libsql-0.1.3}/docs/api.md +0 -0
- {libsql-0.1.2 → libsql-0.1.3}/example.py +0 -0
- {libsql-0.1.2 → libsql-0.1.3}/examples/batch/.gitignore +0 -0
- {libsql-0.1.2 → libsql-0.1.3}/examples/batch/README.md +0 -0
- {libsql-0.1.2 → libsql-0.1.3}/examples/batch/main.py +0 -0
- {libsql-0.1.2 → libsql-0.1.3}/examples/encryption/.gitignore +0 -0
- {libsql-0.1.2 → libsql-0.1.3}/examples/encryption/README.md +0 -0
- {libsql-0.1.2 → libsql-0.1.3}/examples/encryption/main.py +0 -0
- {libsql-0.1.2 → libsql-0.1.3}/examples/execute_script.py +0 -0
- {libsql-0.1.2 → libsql-0.1.3}/examples/local/.gitignore +0 -0
- {libsql-0.1.2 → libsql-0.1.3}/examples/local/README.md +0 -0
- {libsql-0.1.2 → libsql-0.1.3}/examples/local/main.py +0 -0
- {libsql-0.1.2 → libsql-0.1.3}/examples/memory/README.md +0 -0
- {libsql-0.1.2 → libsql-0.1.3}/examples/memory/main.py +0 -0
- {libsql-0.1.2 → libsql-0.1.3}/examples/remote/README.md +0 -0
- {libsql-0.1.2 → libsql-0.1.3}/examples/remote/main.py +0 -0
- {libsql-0.1.2 → libsql-0.1.3}/examples/remote_connect.py +0 -0
- {libsql-0.1.2 → libsql-0.1.3}/examples/sqlalchemy/dialect.py +0 -0
- {libsql-0.1.2 → libsql-0.1.3}/examples/sqlalchemy/example.py +0 -0
- {libsql-0.1.2 → libsql-0.1.3}/examples/statements.sql +0 -0
- {libsql-0.1.2 → libsql-0.1.3}/examples/sync/.gitignore +0 -0
- {libsql-0.1.2 → libsql-0.1.3}/examples/sync/README.md +0 -0
- {libsql-0.1.2 → libsql-0.1.3}/examples/sync/main.py +0 -0
- {libsql-0.1.2 → libsql-0.1.3}/examples/sync_write.py +0 -0
- {libsql-0.1.2 → libsql-0.1.3}/examples/transaction/.gitignore +0 -0
- {libsql-0.1.2 → libsql-0.1.3}/examples/transaction/README.md +0 -0
- {libsql-0.1.2 → libsql-0.1.3}/examples/transaction/main.py +0 -0
- {libsql-0.1.2 → libsql-0.1.3}/examples/vector/.gitignore +0 -0
- {libsql-0.1.2 → libsql-0.1.3}/examples/vector/README.md +0 -0
- {libsql-0.1.2 → libsql-0.1.3}/examples/vector/main.py +0 -0
- {libsql-0.1.2 → libsql-0.1.3}/examples/vector.py +0 -0
- {libsql-0.1.2 → libsql-0.1.3}/perf-libsql.py +0 -0
- {libsql-0.1.2 → libsql-0.1.3}/perf-sqlite3.py +0 -0
- {libsql-0.1.2 → libsql-0.1.3}/shell.nix +0 -0
- {libsql-0.1.2 → libsql-0.1.3}/src/lib.rs +0 -0
- {libsql-0.1.2 → libsql-0.1.3}/tests/test_suite.py +0 -0
@@ -326,6 +326,15 @@ dependencies = [
|
|
326
326
|
"libloading",
|
327
327
|
]
|
328
328
|
|
329
|
+
[[package]]
|
330
|
+
name = "cmake"
|
331
|
+
version = "0.1.54"
|
332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
333
|
+
checksum = "e7caa3f9de89ddbe2c607f4101924c5abec803763ae9534e4f4d7d8f84aa81f0"
|
334
|
+
dependencies = [
|
335
|
+
"cc",
|
336
|
+
]
|
337
|
+
|
329
338
|
[[package]]
|
330
339
|
name = "core-foundation"
|
331
340
|
version = "0.9.4"
|
@@ -806,9 +815,9 @@ dependencies = [
|
|
806
815
|
|
807
816
|
[[package]]
|
808
817
|
name = "libsql"
|
809
|
-
version = "0.9.
|
818
|
+
version = "0.9.16"
|
810
819
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
811
|
-
checksum = "
|
820
|
+
checksum = "6d95129072238e1a97837259b5112e870430991ef0305dfba8fae46c47dc3a6e"
|
812
821
|
dependencies = [
|
813
822
|
"anyhow",
|
814
823
|
"async-stream",
|
@@ -846,20 +855,21 @@ dependencies = [
|
|
846
855
|
|
847
856
|
[[package]]
|
848
857
|
name = "libsql-ffi"
|
849
|
-
version = "0.9.
|
858
|
+
version = "0.9.16"
|
850
859
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
851
|
-
checksum = "
|
860
|
+
checksum = "9c92aaed04d77f0e8c90d2d3a71aee00ba9d561268615cc57128d9c9e76e9464"
|
852
861
|
dependencies = [
|
853
862
|
"bindgen",
|
854
863
|
"cc",
|
864
|
+
"cmake",
|
855
865
|
"glob",
|
856
866
|
]
|
857
867
|
|
858
868
|
[[package]]
|
859
869
|
name = "libsql-hrana"
|
860
|
-
version = "0.9.
|
870
|
+
version = "0.9.16"
|
861
871
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
862
|
-
checksum = "
|
872
|
+
checksum = "759e0846db84f03e25e3001d9060c23824cbd961eae44603d7dc58b9a8581b82"
|
863
873
|
dependencies = [
|
864
874
|
"base64 0.21.7",
|
865
875
|
"bytes",
|
@@ -869,9 +879,9 @@ dependencies = [
|
|
869
879
|
|
870
880
|
[[package]]
|
871
881
|
name = "libsql-rusqlite"
|
872
|
-
version = "0.9.
|
882
|
+
version = "0.9.16"
|
873
883
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
874
|
-
checksum = "
|
884
|
+
checksum = "d6fa85992b107fb372b12bdb9612577447dbe2edb4548ee6eb6338396f34273f"
|
875
885
|
dependencies = [
|
876
886
|
"bitflags 2.6.0",
|
877
887
|
"fallible-iterator 0.2.0",
|
@@ -901,9 +911,9 @@ dependencies = [
|
|
901
911
|
|
902
912
|
[[package]]
|
903
913
|
name = "libsql-sys"
|
904
|
-
version = "0.9.
|
914
|
+
version = "0.9.16"
|
905
915
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
906
|
-
checksum = "
|
916
|
+
checksum = "49defac306e9d29bfa1c908eae1c3a5b3942b6f897f50f02d14bf12be63c281d"
|
907
917
|
dependencies = [
|
908
918
|
"bytes",
|
909
919
|
"libsql-ffi",
|
@@ -915,9 +925,9 @@ dependencies = [
|
|
915
925
|
|
916
926
|
[[package]]
|
917
927
|
name = "libsql_replication"
|
918
|
-
version = "0.9.
|
928
|
+
version = "0.9.16"
|
919
929
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
920
|
-
checksum = "
|
930
|
+
checksum = "7aa18ccced4312c8ed9fc02f0d90a7fc42edf5223517c3745cd2f804770c04e4"
|
921
931
|
dependencies = [
|
922
932
|
"aes",
|
923
933
|
"async-stream",
|
@@ -1227,7 +1237,7 @@ dependencies = [
|
|
1227
1237
|
|
1228
1238
|
[[package]]
|
1229
1239
|
name = "pylibsql"
|
1230
|
-
version = "0.1.
|
1240
|
+
version = "0.1.3"
|
1231
1241
|
dependencies = [
|
1232
1242
|
"libsql",
|
1233
1243
|
"pyo3",
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[package]
|
2
2
|
name = "pylibsql"
|
3
|
-
version = "0.1.
|
3
|
+
version = "0.1.3"
|
4
4
|
edition = "2021"
|
5
5
|
|
6
6
|
[lib]
|
@@ -8,7 +8,7 @@ crate-type = ["cdylib"]
|
|
8
8
|
|
9
9
|
[dependencies]
|
10
10
|
pyo3 = "0.19.0"
|
11
|
-
libsql = { version = "0.9.
|
11
|
+
libsql = { version = "0.9.16", features = ["encryption"] }
|
12
12
|
tokio = { version = "1.29.1", features = [ "rt-multi-thread" ] }
|
13
13
|
tracing-subscriber = "0.3"
|
14
14
|
|
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
|