tigrbl_engine_inmemory 0.4.2.dev4__py3-none-any.whl → 0.4.3.dev4__py3-none-any.whl

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.
@@ -1,14 +1,14 @@
1
1
  from __future__ import annotations
2
2
 
3
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
4
+ import warnings
9
5
 
10
6
 
11
7
  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)
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,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
 
@@ -0,0 +1,11 @@
1
+ tigrbl_engine_inmemory/__init__.py,sha256=uVfXdFtTNqQqO6cepRMRH4Ho63UCyHJYDndimt8W1QY,197
2
+ tigrbl_engine_inmemory/engine.py,sha256=Qew4gLzzZRxQN5YfNjNceIFZ0vQW9hN9RwPe2kpT0T0,886
3
+ tigrbl_engine_inmemory/plugin.py,sha256=FhsJICN4uiqE2tkg2VWX0qkdAVDPxBKgEbwwMfGHP_A,1121
4
+ tigrbl_engine_inmemory/rust.py,sha256=WojWAg0hZtPEBDL9-AvqAN_zKgOmilJRgEW-8OV0gfo,421
5
+ tigrbl_engine_inmemory/session.py,sha256=mC2oKoGzX5gMhX90OIPQc9iEe4PYqyQSWFSQ6nvWHYM,4503
6
+ tigrbl_engine_inmemory-0.4.3.dev4.dist-info/METADATA,sha256=7FjMXTe7Gd5YMNPmsa5O-2gLW9p3PLMWSZZtHTuSaJ4,22726
7
+ tigrbl_engine_inmemory-0.4.3.dev4.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
8
+ tigrbl_engine_inmemory-0.4.3.dev4.dist-info/entry_points.txt,sha256=GwirPkpUQjnAdofQ9cbSTMlimr4QQXCKHIlPI1OfIvs,66
9
+ tigrbl_engine_inmemory-0.4.3.dev4.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
10
+ tigrbl_engine_inmemory-0.4.3.dev4.dist-info/licenses/NOTICE,sha256=EvJMTshzsWz43LiK-DeN2ZuLtrP49cxvlrFlJ8F_buc,221
11
+ tigrbl_engine_inmemory-0.4.3.dev4.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: hatchling 1.29.0
2
+ Generator: hatchling 1.30.1
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -1,11 +0,0 @@
1
- tigrbl_engine_inmemory/__init__.py,sha256=uVfXdFtTNqQqO6cepRMRH4Ho63UCyHJYDndimt8W1QY,197
2
- tigrbl_engine_inmemory/engine.py,sha256=Qew4gLzzZRxQN5YfNjNceIFZ0vQW9hN9RwPe2kpT0T0,886
3
- tigrbl_engine_inmemory/plugin.py,sha256=FhsJICN4uiqE2tkg2VWX0qkdAVDPxBKgEbwwMfGHP_A,1121
4
- tigrbl_engine_inmemory/rust.py,sha256=0g5VcMKD05n3dWbpzaOF2QX1zA6Bh2rYVVhrc9m1G2Q,444
5
- tigrbl_engine_inmemory/session.py,sha256=mC2oKoGzX5gMhX90OIPQc9iEe4PYqyQSWFSQ6nvWHYM,4503
6
- tigrbl_engine_inmemory-0.4.2.dev4.dist-info/METADATA,sha256=OulDhvQYj608eptDUJLGwdSKT3VlSD6PeHkAr72gTa8,22589
7
- tigrbl_engine_inmemory-0.4.2.dev4.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
8
- tigrbl_engine_inmemory-0.4.2.dev4.dist-info/entry_points.txt,sha256=GwirPkpUQjnAdofQ9cbSTMlimr4QQXCKHIlPI1OfIvs,66
9
- tigrbl_engine_inmemory-0.4.2.dev4.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
10
- tigrbl_engine_inmemory-0.4.2.dev4.dist-info/licenses/NOTICE,sha256=EvJMTshzsWz43LiK-DeN2ZuLtrP49cxvlrFlJ8F_buc,221
11
- tigrbl_engine_inmemory-0.4.2.dev4.dist-info/RECORD,,