dirsql 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.
Files changed (39) hide show
  1. {dirsql-0.1.2 → dirsql-0.1.3}/PKG-INFO +3 -1
  2. {dirsql-0.1.2/packages/python → dirsql-0.1.3}/README.md +2 -0
  3. {dirsql-0.1.2 → dirsql-0.1.3/packages/python}/README.md +2 -0
  4. {dirsql-0.1.2 → dirsql-0.1.3}/packages/rust/README.md +2 -0
  5. {dirsql-0.1.2 → dirsql-0.1.3}/pyproject.toml +1 -1
  6. {dirsql-0.1.2 → dirsql-0.1.3}/Cargo.lock +0 -0
  7. {dirsql-0.1.2 → dirsql-0.1.3}/Cargo.toml +0 -0
  8. {dirsql-0.1.2 → dirsql-0.1.3}/packages/python/Cargo.toml +0 -0
  9. {dirsql-0.1.2 → dirsql-0.1.3}/packages/python/src/lib.rs +0 -0
  10. {dirsql-0.1.2 → dirsql-0.1.3}/packages/python/tests/__init__.py +0 -0
  11. {dirsql-0.1.2 → dirsql-0.1.3}/packages/python/tests/conftest.py +0 -0
  12. {dirsql-0.1.2 → dirsql-0.1.3}/packages/python/tests/integration/__init__.py +0 -0
  13. {dirsql-0.1.2 → dirsql-0.1.3}/packages/python/tests/integration/test_async_dirsql.py +0 -0
  14. {dirsql-0.1.2 → dirsql-0.1.3}/packages/python/tests/integration/test_binding.py +0 -0
  15. {dirsql-0.1.2 → dirsql-0.1.3}/packages/python/tests/integration/test_dirsql.py +0 -0
  16. {dirsql-0.1.2 → dirsql-0.1.3}/packages/python/tests/integration/test_docs_examples.py +0 -0
  17. {dirsql-0.1.2 → dirsql-0.1.3}/packages/python/tests/integration/test_docs_gaps.py +0 -0
  18. {dirsql-0.1.2 → dirsql-0.1.3}/packages/python/tests/integration/test_from_config.py +0 -0
  19. {dirsql-0.1.2 → dirsql-0.1.3}/packages/rust/Cargo.toml +0 -0
  20. {dirsql-0.1.2 → dirsql-0.1.3}/packages/rust/benches/db_bench.rs +0 -0
  21. {dirsql-0.1.2 → dirsql-0.1.3}/packages/rust/benches/differ_bench.rs +0 -0
  22. {dirsql-0.1.2 → dirsql-0.1.3}/packages/rust/benches/matcher_bench.rs +0 -0
  23. {dirsql-0.1.2 → dirsql-0.1.3}/packages/rust/benches/scanner_bench.rs +0 -0
  24. {dirsql-0.1.2 → dirsql-0.1.3}/packages/rust/src/config.rs +0 -0
  25. {dirsql-0.1.2 → dirsql-0.1.3}/packages/rust/src/db.rs +0 -0
  26. {dirsql-0.1.2 → dirsql-0.1.3}/packages/rust/src/differ.rs +0 -0
  27. {dirsql-0.1.2 → dirsql-0.1.3}/packages/rust/src/lib.rs +0 -0
  28. {dirsql-0.1.2 → dirsql-0.1.3}/packages/rust/src/matcher.rs +0 -0
  29. {dirsql-0.1.2 → dirsql-0.1.3}/packages/rust/src/parser.rs +0 -0
  30. {dirsql-0.1.2 → dirsql-0.1.3}/packages/rust/src/scanner.rs +0 -0
  31. {dirsql-0.1.2 → dirsql-0.1.3}/packages/rust/src/watcher.rs +0 -0
  32. {dirsql-0.1.2 → dirsql-0.1.3}/packages/rust/tests/async_sdk.rs +0 -0
  33. {dirsql-0.1.2 → dirsql-0.1.3}/packages/rust/tests/docs_examples.rs +0 -0
  34. {dirsql-0.1.2 → dirsql-0.1.3}/packages/rust/tests/docs_gaps.rs +0 -0
  35. {dirsql-0.1.2 → dirsql-0.1.3}/packages/rust/tests/from_config.rs +0 -0
  36. {dirsql-0.1.2 → dirsql-0.1.3}/packages/rust/tests/sdk.rs +0 -0
  37. {dirsql-0.1.2 → dirsql-0.1.3}/python/dirsql/__init__.py +0 -0
  38. {dirsql-0.1.2 → dirsql-0.1.3}/python/dirsql/_async.py +0 -0
  39. {dirsql-0.1.2 → dirsql-0.1.3}/python/dirsql/test_async.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dirsql
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Requires-Dist: pytest>=8 ; extra == 'dev'
5
5
  Requires-Dist: pytest-describe>=2 ; extra == 'dev'
6
6
  Requires-Dist: pytest-asyncio>=0.23 ; extra == 'dev'
@@ -19,6 +19,8 @@ Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
19
19
 
20
20
  Ephemeral SQL index over a local directory. Watches a filesystem, ingests structured files into an in-memory SQLite database, and exposes a SQL query interface. The database is purely in-memory -- the filesystem is always the source of truth.
21
21
 
22
+ [Documentation](https://thekevinscott.github.io/dirsql/?lang=python)
23
+
22
24
  ## Installation
23
25
 
24
26
  ```bash
@@ -2,6 +2,8 @@
2
2
 
3
3
  Ephemeral SQL index over a local directory. Watches a filesystem, ingests structured files into an in-memory SQLite database, and exposes a SQL query interface. The database is purely in-memory -- the filesystem is always the source of truth.
4
4
 
5
+ [Documentation](https://thekevinscott.github.io/dirsql/?lang=python)
6
+
5
7
  ## Installation
6
8
 
7
9
  ```bash
@@ -2,6 +2,8 @@
2
2
 
3
3
  Ephemeral SQL index over a local directory. Watches a filesystem, ingests structured files into an in-memory SQLite database, and exposes a SQL query interface. The database is purely in-memory -- the filesystem is always the source of truth.
4
4
 
5
+ [Documentation](https://thekevinscott.github.io/dirsql/?lang=python)
6
+
5
7
  ## Installation
6
8
 
7
9
  ```bash
@@ -2,6 +2,8 @@
2
2
 
3
3
  Rust SDK for `dirsql`. Ephemeral SQL index over a local directory.
4
4
 
5
+ [Documentation](https://thekevinscott.github.io/dirsql/?lang=rust)
6
+
5
7
  ## Installation
6
8
 
7
9
  ```bash
@@ -4,7 +4,7 @@ build-backend = "maturin"
4
4
 
5
5
  [project]
6
6
  name = "dirsql"
7
- version = "0.1.2"
7
+ version = "0.1.3"
8
8
  description = "Ephemeral SQL index over a local directory"
9
9
  license = "MIT"
10
10
  requires-python = ">=3.12"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes