tigrbl_engine_inmemory 0.4.3.dev4__tar.gz → 0.4.4.dev7__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tigrbl_engine_inmemory
3
- Version: 0.4.3.dev4
3
+ Version: 0.4.4.dev7
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
@@ -307,13 +307,11 @@ pip install tigrbl_engine_inmemory
307
307
 
308
308
  Implementation orientation:
309
309
  - `tigrbl_engine_inmemory`: engine, plugin, session
310
- - `tigrbl_engine_inmemory.rust` is a deprecated compatibility shim; engine registration is Python-only.
311
310
 
312
311
  ## Public API and Import Surface
313
312
 
314
313
  - Import roots: `tigrbl_engine_inmemory`.
315
314
  - Public symbols: `__version__`, `register`.
316
- - `register_rust_engine` is deprecated and raises when called.
317
315
  - Workspace dependencies: [`tigrbl`](https://pypi.org/project/tigrbl/).
318
316
  - External runtime dependencies: none declared.
319
317
 
@@ -72,13 +72,11 @@ pip install tigrbl_engine_inmemory
72
72
 
73
73
  Implementation orientation:
74
74
  - `tigrbl_engine_inmemory`: engine, plugin, session
75
- - `tigrbl_engine_inmemory.rust` is a deprecated compatibility shim; engine registration is Python-only.
76
75
 
77
76
  ## Public API and Import Surface
78
77
 
79
78
  - Import roots: `tigrbl_engine_inmemory`.
80
79
  - Public symbols: `__version__`, `register`.
81
- - `register_rust_engine` is deprecated and raises when called.
82
80
  - Workspace dependencies: [`tigrbl`](https://pypi.org/project/tigrbl/).
83
81
  - External runtime dependencies: none declared.
84
82
 
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "tigrbl_engine_inmemory"
7
- version = "0.4.3.dev4"
7
+ version = "0.4.4.dev7"
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,6 @@
1
+ """tigrbl_engine_inmemory package."""
2
+
3
+ from .plugin import register
4
+
5
+ __all__ = ["register", "__version__"]
6
+ __version__ = "0.4.0.dev1"
@@ -1,7 +0,0 @@
1
- """tigrbl_engine_inmemory package."""
2
-
3
- from .rust import register_rust_engine
4
- from .plugin import register
5
-
6
- __all__ = ["register", "register_rust_engine", "__version__"]
7
- __version__ = "0.4.0.dev1"
@@ -1,14 +0,0 @@
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.")