vost 0.62.0__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 (180) hide show
  1. vost-0.62.0/.github/workflows/publish.yml +17 -0
  2. vost-0.62.0/.gitignore +7 -0
  3. vost-0.62.0/.readthedocs.yaml +12 -0
  4. vost-0.62.0/CHANGELOG.md +1025 -0
  5. vost-0.62.0/LICENSE +191 -0
  6. vost-0.62.0/Makefile +18 -0
  7. vost-0.62.0/PKG-INFO +488 -0
  8. vost-0.62.0/README.md +454 -0
  9. vost-0.62.0/docs/api.md +256 -0
  10. vost-0.62.0/docs/cli.md +803 -0
  11. vost-0.62.0/docs/drop-compat-layer.md +295 -0
  12. vost-0.62.0/docs/index.md +32 -0
  13. vost-0.62.0/docs/paths.md +566 -0
  14. vost-0.62.0/docs/sqlite-backend-migration.md +187 -0
  15. vost-0.62.0/docs/testing.md +132 -0
  16. vost-0.62.0/interop/fixtures.json +69 -0
  17. vost-0.62.0/interop/py_read_test.py +198 -0
  18. vost-0.62.0/interop/py_write.py +65 -0
  19. vost-0.62.0/interop/run.sh +63 -0
  20. vost-0.62.0/interop/ts_read.test.ts +258 -0
  21. vost-0.62.0/interop/ts_write.ts +94 -0
  22. vost-0.62.0/mkdocs.yml +42 -0
  23. vost-0.62.0/pyproject.toml +58 -0
  24. vost-0.62.0/requirements-docs.txt +2 -0
  25. vost-0.62.0/rs/.gitignore +1 -0
  26. vost-0.62.0/rs/Cargo.lock +2153 -0
  27. vost-0.62.0/rs/Cargo.toml +33 -0
  28. vost-0.62.0/rs/LICENSE +191 -0
  29. vost-0.62.0/rs/README.md +27 -0
  30. vost-0.62.0/rs/examples/rs_read.rs +383 -0
  31. vost-0.62.0/rs/examples/rs_write.rs +126 -0
  32. vost-0.62.0/rs/src/batch.rs +144 -0
  33. vost-0.62.0/rs/src/copy.rs +648 -0
  34. vost-0.62.0/rs/src/error.rs +121 -0
  35. vost-0.62.0/rs/src/fileobj.rs +172 -0
  36. vost-0.62.0/rs/src/fs.rs +1995 -0
  37. vost-0.62.0/rs/src/glob.rs +75 -0
  38. vost-0.62.0/rs/src/lib.rs +59 -0
  39. vost-0.62.0/rs/src/lock.rs +32 -0
  40. vost-0.62.0/rs/src/mirror.rs +31 -0
  41. vost-0.62.0/rs/src/notes.rs +603 -0
  42. vost-0.62.0/rs/src/paths.rs +191 -0
  43. vost-0.62.0/rs/src/refdict.rs +376 -0
  44. vost-0.62.0/rs/src/reflog.rs +100 -0
  45. vost-0.62.0/rs/src/store.rs +202 -0
  46. vost-0.62.0/rs/src/tree.rs +450 -0
  47. vost-0.62.0/rs/src/types.rs +478 -0
  48. vost-0.62.0/rs/tests/common/mod.rs +25 -0
  49. vost-0.62.0/rs/tests/integration.rs +229 -0
  50. vost-0.62.0/rs/tests/test_apply.rs +546 -0
  51. vost-0.62.0/rs/tests/test_batch.rs +557 -0
  52. vost-0.62.0/rs/tests/test_copy.rs +1015 -0
  53. vost-0.62.0/rs/tests/test_copy_from_ref.rs +660 -0
  54. vost-0.62.0/rs/tests/test_fileobj.rs +123 -0
  55. vost-0.62.0/rs/tests/test_fs_read.rs +494 -0
  56. vost-0.62.0/rs/tests/test_fs_write.rs +834 -0
  57. vost-0.62.0/rs/tests/test_glob.rs +315 -0
  58. vost-0.62.0/rs/tests/test_history.rs +1124 -0
  59. vost-0.62.0/rs/tests/test_move.rs +356 -0
  60. vost-0.62.0/rs/tests/test_notes.rs +754 -0
  61. vost-0.62.0/rs/tests/test_stat.rs +310 -0
  62. vost-0.62.0/rs/tests/test_store.rs +656 -0
  63. vost-0.62.0/rs/tests/test_types.rs +256 -0
  64. vost-0.62.0/scripts/test-parity.sh +100 -0
  65. vost-0.62.0/src/vost/__init__.py +20 -0
  66. vost-0.62.0/src/vost/_exclude.py +121 -0
  67. vost-0.62.0/src/vost/_fileobj.py +111 -0
  68. vost-0.62.0/src/vost/_fuse.py +202 -0
  69. vost-0.62.0/src/vost/_glob.py +16 -0
  70. vost-0.62.0/src/vost/_lock.py +76 -0
  71. vost-0.62.0/src/vost/_objsize.py +107 -0
  72. vost-0.62.0/src/vost/batch.py +197 -0
  73. vost-0.62.0/src/vost/cli/__init__.py +6 -0
  74. vost-0.62.0/src/vost/cli/_archive.py +382 -0
  75. vost-0.62.0/src/vost/cli/_basic.py +1059 -0
  76. vost-0.62.0/src/vost/cli/_cp.py +522 -0
  77. vost-0.62.0/src/vost/cli/_helpers.py +611 -0
  78. vost-0.62.0/src/vost/cli/_mirror.py +98 -0
  79. vost-0.62.0/src/vost/cli/_mount.py +79 -0
  80. vost-0.62.0/src/vost/cli/_notes.py +133 -0
  81. vost-0.62.0/src/vost/cli/_refs.py +235 -0
  82. vost-0.62.0/src/vost/cli/_serve.py +75 -0
  83. vost-0.62.0/src/vost/cli/_sync.py +318 -0
  84. vost-0.62.0/src/vost/cli/_watch.py +80 -0
  85. vost-0.62.0/src/vost/cli/_web.py +414 -0
  86. vost-0.62.0/src/vost/copy/__init__.py +56 -0
  87. vost-0.62.0/src/vost/copy/_io.py +187 -0
  88. vost-0.62.0/src/vost/copy/_ops.py +1079 -0
  89. vost-0.62.0/src/vost/copy/_resolve.py +469 -0
  90. vost-0.62.0/src/vost/copy/_types.py +207 -0
  91. vost-0.62.0/src/vost/exceptions.py +9 -0
  92. vost-0.62.0/src/vost/fs.py +1471 -0
  93. vost-0.62.0/src/vost/mirror.py +303 -0
  94. vost-0.62.0/src/vost/notes.py +451 -0
  95. vost-0.62.0/src/vost/py.typed +0 -0
  96. vost-0.62.0/src/vost/repo.py +598 -0
  97. vost-0.62.0/src/vost/tree.py +353 -0
  98. vost-0.62.0/tests/__init__.py +0 -0
  99. vost-0.62.0/tests/conftest.py +100 -0
  100. vost-0.62.0/tests/test_apply.py +306 -0
  101. vost-0.62.0/tests/test_auto_create.py +295 -0
  102. vost-0.62.0/tests/test_backup_restore.py +277 -0
  103. vost-0.62.0/tests/test_batch.py +266 -0
  104. vost-0.62.0/tests/test_cli.py +1014 -0
  105. vost-0.62.0/tests/test_cli_archive.py +996 -0
  106. vost-0.62.0/tests/test_cli_cp.py +1231 -0
  107. vost-0.62.0/tests/test_cli_ls.py +365 -0
  108. vost-0.62.0/tests/test_cli_refs.py +631 -0
  109. vost-0.62.0/tests/test_cli_web.py +827 -0
  110. vost-0.62.0/tests/test_cmp_cli.py +231 -0
  111. vost-0.62.0/tests/test_copy.py +1504 -0
  112. vost-0.62.0/tests/test_copy_from_ref.py +389 -0
  113. vost-0.62.0/tests/test_exclude.py +258 -0
  114. vost-0.62.0/tests/test_fileobj.py +107 -0
  115. vost-0.62.0/tests/test_fs_read.py +304 -0
  116. vost-0.62.0/tests/test_fs_write.py +710 -0
  117. vost-0.62.0/tests/test_fuse.py +318 -0
  118. vost-0.62.0/tests/test_glob.py +229 -0
  119. vost-0.62.0/tests/test_head.py +171 -0
  120. vost-0.62.0/tests/test_history.py +206 -0
  121. vost-0.62.0/tests/test_integration.py +36 -0
  122. vost-0.62.0/tests/test_message.py +95 -0
  123. vost-0.62.0/tests/test_move.py +120 -0
  124. vost-0.62.0/tests/test_notes.py +485 -0
  125. vost-0.62.0/tests/test_objsize.py +117 -0
  126. vost-0.62.0/tests/test_ref_path.py +834 -0
  127. vost-0.62.0/tests/test_repo.py +300 -0
  128. vost-0.62.0/tests/test_serve.py +154 -0
  129. vost-0.62.0/tests/test_stat.py +290 -0
  130. vost-0.62.0/tests/test_sync.py +1490 -0
  131. vost-0.62.0/tests/test_sync_api.py +169 -0
  132. vost-0.62.0/tests/test_tree.py +191 -0
  133. vost-0.62.0/tests/test_watch.py +215 -0
  134. vost-0.62.0/ts/.gitignore +2 -0
  135. vost-0.62.0/ts/README.md +24 -0
  136. vost-0.62.0/ts/deno.json +9 -0
  137. vost-0.62.0/ts/deno.lock +953 -0
  138. vost-0.62.0/ts/package-lock.json +2347 -0
  139. vost-0.62.0/ts/package.json +58 -0
  140. vost-0.62.0/ts/src/batch.ts +191 -0
  141. vost-0.62.0/ts/src/copy.ts +1387 -0
  142. vost-0.62.0/ts/src/fileobj.ts +135 -0
  143. vost-0.62.0/ts/src/fs.ts +1575 -0
  144. vost-0.62.0/ts/src/gitstore.ts +162 -0
  145. vost-0.62.0/ts/src/glob.ts +65 -0
  146. vost-0.62.0/ts/src/index.ts +86 -0
  147. vost-0.62.0/ts/src/lock.ts +81 -0
  148. vost-0.62.0/ts/src/mirror.ts +216 -0
  149. vost-0.62.0/ts/src/notes.ts +571 -0
  150. vost-0.62.0/ts/src/paths.ts +42 -0
  151. vost-0.62.0/ts/src/refdict.ts +291 -0
  152. vost-0.62.0/ts/src/reflog.ts +93 -0
  153. vost-0.62.0/ts/src/tree.ts +373 -0
  154. vost-0.62.0/ts/src/types.ts +516 -0
  155. vost-0.62.0/ts/tests/apply.test.ts +229 -0
  156. vost-0.62.0/ts/tests/batch.test.ts +231 -0
  157. vost-0.62.0/ts/tests/copy-from-ref.test.ts +412 -0
  158. vost-0.62.0/ts/tests/copy.test.ts +794 -0
  159. vost-0.62.0/ts/tests/deno_compat_test.ts +589 -0
  160. vost-0.62.0/ts/tests/fileobj.test.ts +117 -0
  161. vost-0.62.0/ts/tests/fs-read.test.ts +355 -0
  162. vost-0.62.0/ts/tests/fs-write.test.ts +527 -0
  163. vost-0.62.0/ts/tests/glob.test.ts +214 -0
  164. vost-0.62.0/ts/tests/head.test.ts +44 -0
  165. vost-0.62.0/ts/tests/helpers.ts +64 -0
  166. vost-0.62.0/ts/tests/history.test.ts +148 -0
  167. vost-0.62.0/ts/tests/integration.test.ts +19 -0
  168. vost-0.62.0/ts/tests/message.test.ts +132 -0
  169. vost-0.62.0/ts/tests/move.test.ts +161 -0
  170. vost-0.62.0/ts/tests/notes.test.ts +543 -0
  171. vost-0.62.0/ts/tests/repo.test.ts +301 -0
  172. vost-0.62.0/ts/tests/stat.test.ts +253 -0
  173. vost-0.62.0/ts/tests/sync-api.test.ts +32 -0
  174. vost-0.62.0/ts/tests/sync.test.ts +1253 -0
  175. vost-0.62.0/ts/tests/tree.test.ts +230 -0
  176. vost-0.62.0/ts/tests/typecheck.test.ts +21 -0
  177. vost-0.62.0/ts/tests/validation.test.ts +69 -0
  178. vost-0.62.0/ts/tsconfig.json +18 -0
  179. vost-0.62.0/ts/vitest.config.ts +9 -0
  180. vost-0.62.0/uv.lock +371 -0
@@ -0,0 +1,17 @@
1
+ name: Publish to PyPI
2
+
3
+ on:
4
+ push:
5
+ tags:
6
+ - "v*"
7
+
8
+ jobs:
9
+ publish:
10
+ runs-on: ubuntu-latest
11
+ permissions:
12
+ id-token: write
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ - uses: astral-sh/setup-uv@v5
16
+ - run: uv build
17
+ - uses: pypa/gh-action-pypi-publish@release/v1
vost-0.62.0/.gitignore ADDED
@@ -0,0 +1,7 @@
1
+ __pycache__/
2
+ *.pyc
3
+ .venv/
4
+ *.egg-info/
5
+
6
+ # JediDB
7
+ .jedidb/
@@ -0,0 +1,12 @@
1
+ version: 2
2
+ build:
3
+ os: ubuntu-22.04
4
+ tools:
5
+ python: "3.12"
6
+ mkdocs:
7
+ configuration: mkdocs.yml
8
+ python:
9
+ install:
10
+ - requirements: requirements-docs.txt
11
+ - method: pip
12
+ path: .