dirsql 0.0.25__tar.gz → 0.0.26__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.
- {dirsql-0.0.25 → dirsql-0.0.26}/Cargo.lock +10 -0
- {dirsql-0.0.25 → dirsql-0.0.26}/PKG-INFO +1 -1
- {dirsql-0.0.25 → dirsql-0.0.26}/packages/python/Cargo.toml +1 -1
- {dirsql-0.0.25 → dirsql-0.0.26}/pyproject.toml +1 -1
- {dirsql-0.0.25 → dirsql-0.0.26}/Cargo.toml +0 -0
- {dirsql-0.0.25 → dirsql-0.0.26}/README.md +0 -0
- {dirsql-0.0.25 → dirsql-0.0.26}/packages/python/README.md +0 -0
- {dirsql-0.0.25 → dirsql-0.0.26}/packages/python/src/lib.rs +0 -0
- {dirsql-0.0.25 → dirsql-0.0.26}/packages/python/tests/__init__.py +0 -0
- {dirsql-0.0.25 → dirsql-0.0.26}/packages/python/tests/conftest.py +0 -0
- {dirsql-0.0.25 → dirsql-0.0.26}/packages/python/tests/integration/__init__.py +0 -0
- {dirsql-0.0.25 → dirsql-0.0.26}/packages/python/tests/integration/test_async_dirsql.py +0 -0
- {dirsql-0.0.25 → dirsql-0.0.26}/packages/python/tests/integration/test_binding.py +0 -0
- {dirsql-0.0.25 → dirsql-0.0.26}/packages/python/tests/integration/test_dirsql.py +0 -0
- {dirsql-0.0.25 → dirsql-0.0.26}/packages/python/tests/integration/test_docs_examples.py +0 -0
- {dirsql-0.0.25 → dirsql-0.0.26}/packages/python/tests/integration/test_docs_gaps.py +0 -0
- {dirsql-0.0.25 → dirsql-0.0.26}/packages/python/tests/integration/test_from_config.py +0 -0
- {dirsql-0.0.25 → dirsql-0.0.26}/packages/rust/Cargo.toml +0 -0
- {dirsql-0.0.25 → dirsql-0.0.26}/packages/rust/README.md +0 -0
- {dirsql-0.0.25 → dirsql-0.0.26}/packages/rust/benches/db_bench.rs +0 -0
- {dirsql-0.0.25 → dirsql-0.0.26}/packages/rust/benches/differ_bench.rs +0 -0
- {dirsql-0.0.25 → dirsql-0.0.26}/packages/rust/benches/matcher_bench.rs +0 -0
- {dirsql-0.0.25 → dirsql-0.0.26}/packages/rust/benches/scanner_bench.rs +0 -0
- {dirsql-0.0.25 → dirsql-0.0.26}/packages/rust/src/config.rs +0 -0
- {dirsql-0.0.25 → dirsql-0.0.26}/packages/rust/src/db.rs +0 -0
- {dirsql-0.0.25 → dirsql-0.0.26}/packages/rust/src/differ.rs +0 -0
- {dirsql-0.0.25 → dirsql-0.0.26}/packages/rust/src/lib.rs +0 -0
- {dirsql-0.0.25 → dirsql-0.0.26}/packages/rust/src/matcher.rs +0 -0
- {dirsql-0.0.25 → dirsql-0.0.26}/packages/rust/src/parser.rs +0 -0
- {dirsql-0.0.25 → dirsql-0.0.26}/packages/rust/src/scanner.rs +0 -0
- {dirsql-0.0.25 → dirsql-0.0.26}/packages/rust/src/watcher.rs +0 -0
- {dirsql-0.0.25 → dirsql-0.0.26}/packages/rust/tests/async_sdk.rs +0 -0
- {dirsql-0.0.25 → dirsql-0.0.26}/packages/rust/tests/docs_examples.rs +0 -0
- {dirsql-0.0.25 → dirsql-0.0.26}/packages/rust/tests/docs_gaps.rs +0 -0
- {dirsql-0.0.25 → dirsql-0.0.26}/packages/rust/tests/from_config.rs +0 -0
- {dirsql-0.0.25 → dirsql-0.0.26}/packages/rust/tests/sdk.rs +0 -0
- {dirsql-0.0.25 → dirsql-0.0.26}/python/dirsql/__init__.py +0 -0
- {dirsql-0.0.25 → dirsql-0.0.26}/python/dirsql/_async.py +0 -0
- {dirsql-0.0.25 → dirsql-0.0.26}/python/dirsql/test_async.py +0 -0
|
@@ -923,6 +923,7 @@ version = "0.28.3"
|
|
|
923
923
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
924
924
|
checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
|
|
925
925
|
dependencies = [
|
|
926
|
+
"python3-dll-a",
|
|
926
927
|
"target-lexicon",
|
|
927
928
|
]
|
|
928
929
|
|
|
@@ -961,6 +962,15 @@ dependencies = [
|
|
|
961
962
|
"syn",
|
|
962
963
|
]
|
|
963
964
|
|
|
965
|
+
[[package]]
|
|
966
|
+
name = "python3-dll-a"
|
|
967
|
+
version = "0.2.15"
|
|
968
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
969
|
+
checksum = "d80ba7540edb18890d444c5aa8e1f1f99b1bdf26fb26ae383135325f4a36042b"
|
|
970
|
+
dependencies = [
|
|
971
|
+
"cc",
|
|
972
|
+
]
|
|
973
|
+
|
|
964
974
|
[[package]]
|
|
965
975
|
name = "quote"
|
|
966
976
|
version = "1.0.45"
|
|
@@ -11,7 +11,7 @@ crate-type = ["cdylib", "rlib"]
|
|
|
11
11
|
|
|
12
12
|
[dependencies]
|
|
13
13
|
dirsql.workspace = true
|
|
14
|
-
pyo3 = { version = "0.28", features = ["extension-module"], optional = true }
|
|
14
|
+
pyo3 = { version = "0.28", features = ["extension-module", "generate-import-lib"], optional = true }
|
|
15
15
|
|
|
16
16
|
[features]
|
|
17
17
|
default = []
|
|
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
|