tigrbl_engine_inmemory 0.4.2.dev4__tar.gz → 0.4.3.dev4__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.
@@ -0,0 +1,62 @@
1
+ # Root policy: ignore every new root-level entry unless explicitly allowed.
2
+ /*
3
+
4
+ # Root entries intentionally allowed by repository policy.
5
+ !/.codex/
6
+ !/.github/
7
+ !/.gitignore
8
+ !/.ssot/
9
+ !/CODE_OF_CONDUCT.md
10
+ !/CONTRIBUTING.md
11
+ !/LICENSE
12
+ !/NOTICE
13
+ !/README.md
14
+ !/SECURITY.md
15
+ !/assets/
16
+ !/bindings/
17
+ !/docs/
18
+ !/examples/
19
+ !/pkgs/
20
+ !/pyproject.toml
21
+ !/tests/
22
+ !/tools/
23
+ !/uv.lock
24
+
25
+ # Generated caches and build artifacts.
26
+ __pycache__/
27
+ .pytest_cache/
28
+ .ruff_cache/
29
+ .mypy_cache/
30
+ .tox/
31
+ .nox/
32
+ .venv/
33
+ .coverage
34
+ htmlcov/
35
+ build/
36
+ dist/
37
+ site/
38
+ target/
39
+ *.egg-info/
40
+ *.pyc
41
+ *.pyd
42
+ *.tmp*
43
+ *.zip
44
+ *.body
45
+ perf.sqlite
46
+ node_modules/
47
+
48
+ # Root-local generated caches and temporary package artifacts.
49
+ /.benchmarks/
50
+ /.pip-cache/
51
+ /.tmp
52
+ /.tmp/
53
+ /.tmp*/
54
+ /.uv-cache*/
55
+ /.uv-pytest*/
56
+ /.uv-pytest-tigrbl-tests/
57
+ /.uv-python*/
58
+ /.vendor
59
+ /.venv*/
60
+ /.venv-gitvs*/
61
+ /generation_examples/
62
+ /tmp/
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tigrbl_engine_inmemory
3
- Version: 0.4.2.dev4
3
+ Version: 0.4.3.dev4
4
4
  Summary: In-memory database engine plugin for process-local transactional storage, copy-on-write snapshots, and Tigrbl testing.
5
5
  Project-URL: Organization, https://github.com/tigrbl
6
6
  Project-URL: Discord, https://discord.gg/K4YTAPapjR
@@ -306,12 +306,14 @@ pip install tigrbl_engine_inmemory
306
306
  `tigrbl_engine_inmemory` owns the `engine plugin` boundary. It should be installed when you need this package's focused responsibility without assuming every other Tigrbl workspace package is present.
307
307
 
308
308
  Implementation orientation:
309
- - `tigrbl_engine_inmemory`: engine, plugin, rust, session
309
+ - `tigrbl_engine_inmemory`: engine, plugin, session
310
+ - `tigrbl_engine_inmemory.rust` is a deprecated compatibility shim; engine registration is Python-only.
310
311
 
311
312
  ## Public API and Import Surface
312
313
 
313
314
  - Import roots: `tigrbl_engine_inmemory`.
314
- - Public symbols: `__version__`, `register`, `register_rust_engine`.
315
+ - Public symbols: `__version__`, `register`.
316
+ - `register_rust_engine` is deprecated and raises when called.
315
317
  - Workspace dependencies: [`tigrbl`](https://pypi.org/project/tigrbl/).
316
318
  - External runtime dependencies: none declared.
317
319
 
@@ -71,12 +71,14 @@ pip install tigrbl_engine_inmemory
71
71
  `tigrbl_engine_inmemory` owns the `engine plugin` boundary. It should be installed when you need this package's focused responsibility without assuming every other Tigrbl workspace package is present.
72
72
 
73
73
  Implementation orientation:
74
- - `tigrbl_engine_inmemory`: engine, plugin, rust, session
74
+ - `tigrbl_engine_inmemory`: engine, plugin, session
75
+ - `tigrbl_engine_inmemory.rust` is a deprecated compatibility shim; engine registration is Python-only.
75
76
 
76
77
  ## Public API and Import Surface
77
78
 
78
79
  - Import roots: `tigrbl_engine_inmemory`.
79
- - Public symbols: `__version__`, `register`, `register_rust_engine`.
80
+ - Public symbols: `__version__`, `register`.
81
+ - `register_rust_engine` is deprecated and raises when called.
80
82
  - Workspace dependencies: [`tigrbl`](https://pypi.org/project/tigrbl/).
81
83
  - External runtime dependencies: none declared.
82
84
 
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "tigrbl_engine_inmemory"
7
- version = "0.4.2.dev4"
7
+ version = "0.4.3.dev4"
8
8
  description = "In-memory database engine plugin for process-local transactional storage, copy-on-write snapshots, and Tigrbl testing."
9
9
  readme = "README.md"
10
10
  license = { file = "LICENSE" }
@@ -0,0 +1,14 @@
1
+ from __future__ import annotations
2
+
3
+ from typing import Any
4
+ import warnings
5
+
6
+
7
+ def register_rust_engine(kind: str = "inmemory", callback: Any | None = None) -> str:
8
+ del callback
9
+ warnings.warn(
10
+ "tigrbl_engine_inmemory Rust registration is deprecated; engines are Python-only.",
11
+ DeprecationWarning,
12
+ stacklevel=2,
13
+ )
14
+ raise RuntimeError(f"register_rust_engine({kind!r}) is unavailable.")
@@ -1,25 +0,0 @@
1
- __pycache__/
2
- .pytest_cache/
3
- .ruff_cache/
4
- .mypy_cache/
5
- .tox/
6
- .nox/
7
- .venv/
8
- .coverage
9
- htmlcov/
10
- build/
11
- dist/
12
- site/
13
- target/
14
- *.egg-info/
15
- *.pyc
16
- *.tmp*
17
- *.zip
18
- /.vendor
19
- /.tmp
20
- *.body
21
- .pip-cache/
22
- *.pyd
23
- .tmp-release-plan-check.json
24
- /.uv-pytest-tigrbl-tests
25
- perf.sqlite
@@ -1,14 +0,0 @@
1
- from __future__ import annotations
2
-
3
- from typing import Any
4
-
5
- try:
6
- from tigrbl_runtime.rust import register_python_engine
7
- except Exception: # pragma: no cover - additive optional integration
8
- register_python_engine = None
9
-
10
-
11
- def register_rust_engine(kind: str = "inmemory", callback: Any | None = None) -> str:
12
- if register_python_engine is None:
13
- return f"python-engine:{kind}"
14
- return register_python_engine(kind, callback)