tigrbl-runtime 0.1.12.dev1__tar.gz → 0.4.0.dev2__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 (428) hide show
  1. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/Cargo.lock +12 -12
  2. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/Cargo.toml +3 -1
  3. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/PKG-INFO +11 -1
  4. {tigrbl_runtime-0.1.12.dev1/pkgs/core/tigrbl_runtime → tigrbl_runtime-0.4.0.dev2}/README.md +4 -0
  5. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/Cargo.toml +4 -2
  6. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/README.md +4 -0
  7. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_engine_inmemory/Cargo.toml +4 -2
  8. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_engine_inmemory/README.md +4 -0
  9. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_engine_inmemory/src/tx.rs +18 -1
  10. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_engine_postgres/Cargo.toml +4 -2
  11. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_engine_postgres/README.md +4 -0
  12. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_engine_sqlite/Cargo.toml +4 -2
  13. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_engine_sqlite/README.md +4 -0
  14. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_engine_sqlite/src/tx.rs +18 -1
  15. tigrbl_runtime-0.4.0.dev2/crates/tigrbl_rs_kernel/Cargo.toml +16 -0
  16. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_kernel/README.md +4 -0
  17. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_kernel/src/compile.rs +58 -3
  18. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_kernel/src/parity.rs +1 -1
  19. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_kernel/tests/kernel_contract.rs +4 -3
  20. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_kernel/tests/parity_contract.rs +2 -2
  21. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ops_oltp/Cargo.toml +4 -2
  22. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ops_oltp/README.md +4 -0
  23. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ports/Cargo.toml +3 -1
  24. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ports/README.md +4 -0
  25. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_runtime/Cargo.toml +10 -8
  26. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_runtime/README.md +4 -0
  27. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_runtime/src/handle/runtime_handle.rs +1 -46
  28. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_runtime/tests/runtime_contract.rs +27 -0
  29. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_spec/Cargo.toml +2 -0
  30. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_spec/README.md +4 -0
  31. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_spec/src/hook.rs +2 -2
  32. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_spec/src/serde/json.rs +2 -2
  33. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_spec/tests/spec_contract.rs +21 -1
  34. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/pkgs/core/tigrbl_runtime/Cargo.toml +5 -3
  35. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2/pkgs/core/tigrbl_runtime}/README.md +4 -0
  36. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/pkgs/core/tigrbl_runtime/tests/test_channel_runtime_surface.py +104 -0
  37. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/pkgs/core/tigrbl_runtime/tests/test_invoke_phase_db.py +3 -3
  38. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/pkgs/core/tigrbl_runtime/tests/test_phase_context_assignment.py +15 -2
  39. tigrbl_runtime-0.4.0.dev2/pkgs/core/tigrbl_runtime/tests/test_runtime_contracts.py +72 -0
  40. tigrbl_runtime-0.4.0.dev2/pkgs/core/tigrbl_runtime/tests/test_rust_codec.py +91 -0
  41. tigrbl_runtime-0.4.0.dev2/pkgs/core/tigrbl_runtime/tests/test_typed_error_edges.py +45 -0
  42. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/pyproject.toml +10 -2
  43. tigrbl_runtime-0.4.0.dev2/tigrbl_runtime/callbacks.py +15 -0
  44. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/tigrbl_runtime/channel/asgi.py +82 -16
  45. tigrbl_runtime-0.4.0.dev2/tigrbl_runtime/channel/capabilities.py +55 -0
  46. tigrbl_runtime-0.4.0.dev2/tigrbl_runtime/channel/state.py +11 -0
  47. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/tigrbl_runtime/channel/websocket.py +4 -1
  48. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/tigrbl_runtime/executors/base.py +12 -0
  49. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/tigrbl_runtime/executors/invoke.py +16 -5
  50. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/tigrbl_runtime/executors/kernel_executor.py +2 -1
  51. tigrbl_runtime-0.4.0.dev2/tigrbl_runtime/executors/loop_regions.py +46 -0
  52. tigrbl_runtime-0.4.0.dev2/tigrbl_runtime/executors/packed.py +3825 -0
  53. tigrbl_runtime-0.4.0.dev2/tigrbl_runtime/executors/types.py +975 -0
  54. tigrbl_runtime-0.4.0.dev2/tigrbl_runtime/protocol/__init__.py +12 -0
  55. tigrbl_runtime-0.4.0.dev2/tigrbl_runtime/protocol/_iterators.py +3 -0
  56. tigrbl_runtime-0.4.0.dev2/tigrbl_runtime/protocol/http_stream.py +3 -0
  57. tigrbl_runtime-0.4.0.dev2/tigrbl_runtime/protocol/http_unary.py +8 -0
  58. tigrbl_runtime-0.4.0.dev2/tigrbl_runtime/protocol/lifespan_chain.py +3 -0
  59. tigrbl_runtime-0.4.0.dev2/tigrbl_runtime/protocol/sse.py +3 -0
  60. tigrbl_runtime-0.4.0.dev2/tigrbl_runtime/protocol/static_files.py +3 -0
  61. tigrbl_runtime-0.4.0.dev2/tigrbl_runtime/protocol/subevent_handlers.py +3 -0
  62. tigrbl_runtime-0.4.0.dev2/tigrbl_runtime/protocol/transport_atoms.py +3 -0
  63. tigrbl_runtime-0.4.0.dev2/tigrbl_runtime/protocol/websocket.py +3 -0
  64. tigrbl_runtime-0.4.0.dev2/tigrbl_runtime/protocol/webtransport.py +3 -0
  65. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/tigrbl_runtime/runtime/events.py +8 -4
  66. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/tigrbl_runtime/runtime/kernel.py +8 -0
  67. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/tigrbl_runtime/runtime/runtime.py +13 -2
  68. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/tigrbl_runtime/runtime/system.py +4 -2
  69. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/tigrbl_runtime/rust/__init__.py +1 -1
  70. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/tigrbl_runtime/rust/_fallback.py +6 -32
  71. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/tigrbl_runtime/rust/_parity_contract.py +1 -1
  72. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/tigrbl_runtime/rust/callbacks.py +6 -0
  73. tigrbl_runtime-0.4.0.dev2/tigrbl_runtime/rust/codec.py +14 -0
  74. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/tigrbl_runtime/rust/compile.py +1 -1
  75. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/tigrbl_runtime/rust/parity.py +2 -1
  76. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/tigrbl_runtime/rust/runtime.py +1 -35
  77. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/tigrbl_runtime/rust/trace.py +14 -5
  78. tigrbl_runtime-0.4.0.dev2/tigrbl_runtime/transactions.py +3 -0
  79. tigrbl_runtime-0.4.0.dev2/tigrbl_runtime/webhooks.py +116 -0
  80. tigrbl_runtime-0.1.12.dev1/crates/tigrbl_rs_kernel/Cargo.toml +0 -14
  81. tigrbl_runtime-0.1.12.dev1/pkgs/core/tigrbl_runtime/tests/test_runtime_contracts.py +0 -28
  82. tigrbl_runtime-0.1.12.dev1/pkgs/core/tigrbl_runtime/tests/test_rust_codec.py +0 -27
  83. tigrbl_runtime-0.1.12.dev1/tigrbl_runtime/executors/packed.py +0 -987
  84. tigrbl_runtime-0.1.12.dev1/tigrbl_runtime/executors/types.py +0 -332
  85. tigrbl_runtime-0.1.12.dev1/tigrbl_runtime/rust/codec.py +0 -373
  86. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/algebra.rs +0 -0
  87. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/atom.rs +0 -0
  88. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/context/base.rs +0 -0
  89. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/context/bound.rs +0 -0
  90. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/context/egress.rs +0 -0
  91. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/context/encoded.rs +0 -0
  92. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/context/error.rs +0 -0
  93. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/context/ingress.rs +0 -0
  94. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/context/mod.rs +0 -0
  95. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/context/phase_db.rs +0 -0
  96. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/context/planned.rs +0 -0
  97. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/context/resolved.rs +0 -0
  98. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/context/result.rs +0 -0
  99. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/dep/extra.rs +0 -0
  100. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/dep/mod.rs +0 -0
  101. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/dep/param_resolver.rs +0 -0
  102. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/dep/security.rs +0 -0
  103. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/dispatch/binding_match.rs +0 -0
  104. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/dispatch/binding_parse.rs +0 -0
  105. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/dispatch/input_normalize.rs +0 -0
  106. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/dispatch/mod.rs +0 -0
  107. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/dispatch/op_resolve.rs +0 -0
  108. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/egress/asgi_send.rs +0 -0
  109. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/egress/envelope_apply.rs +0 -0
  110. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/egress/headers_apply.rs +0 -0
  111. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/egress/http_finalize.rs +0 -0
  112. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/egress/mod.rs +0 -0
  113. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/egress/out_dump.rs +0 -0
  114. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/egress/result_normalize.rs +0 -0
  115. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/egress/to_transport_response.rs +0 -0
  116. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/emit/mod.rs +0 -0
  117. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/emit/paired_post.rs +0 -0
  118. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/emit/paired_pre.rs +0 -0
  119. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/emit/readtime_alias.rs +0 -0
  120. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/err/mod.rs +0 -0
  121. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/err/rollback.rs +0 -0
  122. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/events.rs +0 -0
  123. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/ingress/ctx_init.rs +0 -0
  124. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/ingress/input_prepare.rs +0 -0
  125. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/ingress/mod.rs +0 -0
  126. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/ingress/transport_extract.rs +0 -0
  127. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/labels.rs +0 -0
  128. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/lib.rs +0 -0
  129. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/macros.rs +0 -0
  130. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/out/masking.rs +0 -0
  131. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/out/mod.rs +0 -0
  132. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/phases.rs +0 -0
  133. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/python/atom_callback.rs +0 -0
  134. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/python/mod.rs +0 -0
  135. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/python/predicate_callback.rs +0 -0
  136. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/refresh/demand.rs +0 -0
  137. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/refresh/mod.rs +0 -0
  138. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/registry.rs +0 -0
  139. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/resolve/assemble.rs +0 -0
  140. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/resolve/mod.rs +0 -0
  141. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/resolve/paired_gen.rs +0 -0
  142. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/response/error_to_transport.rs +0 -0
  143. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/response/headers_from_payload.rs +0 -0
  144. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/response/mod.rs +0 -0
  145. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/response/negotiate.rs +0 -0
  146. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/response/negotiation.rs +0 -0
  147. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/response/render.rs +0 -0
  148. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/response/renderer.rs +0 -0
  149. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/response/template.rs +0 -0
  150. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/response/templates.rs +0 -0
  151. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/schema/collect_in.rs +0 -0
  152. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/schema/collect_out.rs +0 -0
  153. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/schema/mod.rs +0 -0
  154. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/stages.rs +0 -0
  155. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/storage/mod.rs +0 -0
  156. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/storage/to_stored.rs +0 -0
  157. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/sys/commit_tx.rs +0 -0
  158. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/sys/db.rs +0 -0
  159. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/sys/handler_aggregate.rs +0 -0
  160. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/sys/handler_append_chunk.rs +0 -0
  161. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/sys/handler_bulk_create.rs +0 -0
  162. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/sys/handler_bulk_delete.rs +0 -0
  163. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/sys/handler_bulk_merge.rs +0 -0
  164. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/sys/handler_bulk_replace.rs +0 -0
  165. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/sys/handler_bulk_update.rs +0 -0
  166. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/sys/handler_checkpoint.rs +0 -0
  167. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/sys/handler_clear.rs +0 -0
  168. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/sys/handler_count.rs +0 -0
  169. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/sys/handler_create.rs +0 -0
  170. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/sys/handler_custom.rs +0 -0
  171. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/sys/handler_delete.rs +0 -0
  172. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/sys/handler_download.rs +0 -0
  173. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/sys/handler_exists.rs +0 -0
  174. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/sys/handler_group_by.rs +0 -0
  175. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/sys/handler_list.rs +0 -0
  176. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/sys/handler_merge.rs +0 -0
  177. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/sys/handler_noop.rs +0 -0
  178. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/sys/handler_persistence.rs +0 -0
  179. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/sys/handler_publish.rs +0 -0
  180. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/sys/handler_read.rs +0 -0
  181. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/sys/handler_replace.rs +0 -0
  182. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/sys/handler_send_datagram.rs +0 -0
  183. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/sys/handler_subscribe.rs +0 -0
  184. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/sys/handler_tail.rs +0 -0
  185. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/sys/handler_update.rs +0 -0
  186. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/sys/handler_upload.rs +0 -0
  187. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/sys/mod.rs +0 -0
  188. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/sys/oltp_context.rs +0 -0
  189. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/sys/phase_db.rs +0 -0
  190. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/sys/start_tx.rs +0 -0
  191. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/wire/build_in.rs +0 -0
  192. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/wire/build_out.rs +0 -0
  193. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/wire/dump.rs +0 -0
  194. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/wire/mod.rs +0 -0
  195. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/src/wire/validate_in.rs +0 -0
  196. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_atoms/tests/atom_contract.rs +0 -0
  197. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_engine_inmemory/src/catalog.rs +0 -0
  198. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_engine_inmemory/src/column_store.rs +0 -0
  199. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_engine_inmemory/src/engine.rs +0 -0
  200. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_engine_inmemory/src/index.rs +0 -0
  201. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_engine_inmemory/src/lib.rs +0 -0
  202. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_engine_inmemory/src/lowerer.rs +0 -0
  203. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_engine_inmemory/src/row_store.rs +0 -0
  204. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_engine_inmemory/src/session.rs +0 -0
  205. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_engine_inmemory/src/snapshot.rs +0 -0
  206. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_engine_inmemory/src/table.rs +0 -0
  207. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_engine_inmemory/tests/inmemory_engine_contract.rs +0 -0
  208. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_engine_postgres/src/codec.rs +0 -0
  209. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_engine_postgres/src/ddl.rs +0 -0
  210. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_engine_postgres/src/engine.rs +0 -0
  211. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_engine_postgres/src/lib.rs +0 -0
  212. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_engine_postgres/src/lowerer.rs +0 -0
  213. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_engine_postgres/src/query.rs +0 -0
  214. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_engine_postgres/src/reflect.rs +0 -0
  215. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_engine_postgres/src/row.rs +0 -0
  216. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_engine_postgres/src/session.rs +0 -0
  217. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_engine_postgres/src/tx.rs +0 -0
  218. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_engine_postgres/tests/postgres_engine_contract.rs +0 -0
  219. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_engine_sqlite/src/codec.rs +0 -0
  220. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_engine_sqlite/src/ddl.rs +0 -0
  221. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_engine_sqlite/src/engine.rs +0 -0
  222. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_engine_sqlite/src/lib.rs +0 -0
  223. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_engine_sqlite/src/lowerer.rs +0 -0
  224. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_engine_sqlite/src/query.rs +0 -0
  225. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_engine_sqlite/src/reflect.rs +0 -0
  226. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_engine_sqlite/src/row.rs +0 -0
  227. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_engine_sqlite/src/session.rs +0 -0
  228. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_engine_sqlite/tests/sqlite_engine_contract.rs +0 -0
  229. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_kernel/src/builder.rs +0 -0
  230. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_kernel/src/cache.rs +0 -0
  231. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_kernel/src/explain.rs +0 -0
  232. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_kernel/src/inject/deps.rs +0 -0
  233. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_kernel/src/inject/mod.rs +0 -0
  234. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_kernel/src/inject/phase_db.rs +0 -0
  235. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_kernel/src/inject/sys_handlers.rs +0 -0
  236. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_kernel/src/labels.rs +0 -0
  237. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_kernel/src/lib.rs +0 -0
  238. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_kernel/src/opt/barriers.rs +0 -0
  239. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_kernel/src/opt/compaction.rs +0 -0
  240. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_kernel/src/opt/dead_steps.rs +0 -0
  241. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_kernel/src/opt/deforestation.rs +0 -0
  242. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_kernel/src/opt/fusion.rs +0 -0
  243. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_kernel/src/opt/hot_paths.rs +0 -0
  244. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_kernel/src/opt/mod.rs +0 -0
  245. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_kernel/src/opt/schedule.rs +0 -0
  246. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_kernel/src/opview/compiler.rs +0 -0
  247. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_kernel/src/opview/mod.rs +0 -0
  248. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_kernel/src/opview/schema_in.rs +0 -0
  249. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_kernel/src/opview/schema_out.rs +0 -0
  250. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_kernel/src/plan/hashing.rs +0 -0
  251. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_kernel/src/plan/hot.rs +0 -0
  252. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_kernel/src/plan/mod.rs +0 -0
  253. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_kernel/src/plan/models.rs +0 -0
  254. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_kernel/src/plan/packed.rs +0 -0
  255. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_kernel/src/plan/phase.rs +0 -0
  256. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_kernel/src/plan/segment.rs +0 -0
  257. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_kernel/src/route/mod.rs +0 -0
  258. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_kernel/src/route/rest.rs +0 -0
  259. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_kernel/src/route/rpc.rs +0 -0
  260. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_kernel/src/route/ws.rs +0 -0
  261. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_kernel/src/trace.rs +0 -0
  262. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ops_oltp/src/bulk/create.rs +0 -0
  263. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ops_oltp/src/bulk/delete.rs +0 -0
  264. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ops_oltp/src/bulk/merge.rs +0 -0
  265. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ops_oltp/src/bulk/mod.rs +0 -0
  266. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ops_oltp/src/bulk/replace.rs +0 -0
  267. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ops_oltp/src/bulk/update.rs +0 -0
  268. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ops_oltp/src/handlers/custom.rs +0 -0
  269. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ops_oltp/src/handlers/mod.rs +0 -0
  270. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ops_oltp/src/handlers/registry.rs +0 -0
  271. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ops_oltp/src/lib.rs +0 -0
  272. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ops_oltp/src/model/defaults.rs +0 -0
  273. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ops_oltp/src/model/enums.rs +0 -0
  274. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ops_oltp/src/model/filters.rs +0 -0
  275. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ops_oltp/src/model/materialize.rs +0 -0
  276. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ops_oltp/src/model/mod.rs +0 -0
  277. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ops_oltp/src/model/normalize.rs +0 -0
  278. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ops_oltp/src/model/patch.rs +0 -0
  279. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ops_oltp/src/params.rs +0 -0
  280. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ops_oltp/src/python/handler_callback.rs +0 -0
  281. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ops_oltp/src/python/mod.rs +0 -0
  282. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ops_oltp/src/result/list.rs +0 -0
  283. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ops_oltp/src/result/mod.rs +0 -0
  284. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ops_oltp/src/result/mutate.rs +0 -0
  285. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ops_oltp/src/result/read.rs +0 -0
  286. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ops_oltp/src/verbs/clear.rs +0 -0
  287. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ops_oltp/src/verbs/count.rs +0 -0
  288. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ops_oltp/src/verbs/create.rs +0 -0
  289. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ops_oltp/src/verbs/delete.rs +0 -0
  290. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ops_oltp/src/verbs/exists.rs +0 -0
  291. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ops_oltp/src/verbs/list.rs +0 -0
  292. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ops_oltp/src/verbs/merge.rs +0 -0
  293. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ops_oltp/src/verbs/mod.rs +0 -0
  294. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ops_oltp/src/verbs/read.rs +0 -0
  295. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ops_oltp/src/verbs/replace.rs +0 -0
  296. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ops_oltp/src/verbs/update.rs +0 -0
  297. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ops_oltp/tests/ops_contract.rs +0 -0
  298. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ports/src/atoms.rs +0 -0
  299. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ports/src/callbacks.rs +0 -0
  300. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ports/src/channel.rs +0 -0
  301. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ports/src/engines.rs +0 -0
  302. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ports/src/errors.rs +0 -0
  303. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ports/src/handlers.rs +0 -0
  304. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ports/src/lib.rs +0 -0
  305. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ports/src/sessions.rs +0 -0
  306. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ports/src/transactions.rs +0 -0
  307. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ports/src/values.rs +0 -0
  308. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_ports/tests/ports_contract.rs +0 -0
  309. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_runtime/src/callback/fence.rs +0 -0
  310. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_runtime/src/callback/mod.rs +0 -0
  311. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_runtime/src/callback/python.rs +0 -0
  312. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_runtime/src/callback/registry.rs +0 -0
  313. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_runtime/src/callback/rust.rs +0 -0
  314. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_runtime/src/channel/adapter.rs +0 -0
  315. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_runtime/src/channel/mod.rs +0 -0
  316. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_runtime/src/config.rs +0 -0
  317. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_runtime/src/engine/mod.rs +0 -0
  318. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_runtime/src/engine/registry.rs +0 -0
  319. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_runtime/src/engine/resolver.rs +0 -0
  320. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_runtime/src/executor/fused.rs +0 -0
  321. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_runtime/src/executor/invoke.rs +0 -0
  322. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_runtime/src/executor/mod.rs +0 -0
  323. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_runtime/src/executor/packed.rs +0 -0
  324. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_runtime/src/executor/phase.rs +0 -0
  325. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_runtime/src/executor/rollback.rs +0 -0
  326. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_runtime/src/handle/mod.rs +0 -0
  327. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_runtime/src/handle/plan_handle.rs +0 -0
  328. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_runtime/src/lib.rs +0 -0
  329. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_runtime/src/metrics.rs +0 -0
  330. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_runtime/src/parity.rs +0 -0
  331. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_runtime/src/request.rs +0 -0
  332. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_runtime/src/response.rs +0 -0
  333. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_runtime/src/runtime.rs +0 -0
  334. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_runtime/src/status.rs +0 -0
  335. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_runtime/src/trace.rs +0 -0
  336. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_runtime/tests/channel_contract.rs +0 -0
  337. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_runtime/tests/parity_contract.rs +0 -0
  338. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_spec/src/app.rs +0 -0
  339. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_spec/src/binding.rs +0 -0
  340. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_spec/src/callback.rs +0 -0
  341. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_spec/src/column.rs +0 -0
  342. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_spec/src/datatypes/adapter.rs +0 -0
  343. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_spec/src/datatypes/bridge.rs +0 -0
  344. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_spec/src/datatypes/builtin/array.rs +0 -0
  345. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_spec/src/datatypes/builtin/boolean.rs +0 -0
  346. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_spec/src/datatypes/builtin/bytes.rs +0 -0
  347. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_spec/src/datatypes/builtin/date.rs +0 -0
  348. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_spec/src/datatypes/builtin/datetime.rs +0 -0
  349. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_spec/src/datatypes/builtin/decimal.rs +0 -0
  350. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_spec/src/datatypes/builtin/duration.rs +0 -0
  351. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_spec/src/datatypes/builtin/enum_.rs +0 -0
  352. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_spec/src/datatypes/builtin/integer.rs +0 -0
  353. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_spec/src/datatypes/builtin/json.rs +0 -0
  354. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_spec/src/datatypes/builtin/mod.rs +0 -0
  355. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_spec/src/datatypes/builtin/number.rs +0 -0
  356. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_spec/src/datatypes/builtin/object.rs +0 -0
  357. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_spec/src/datatypes/builtin/string.rs +0 -0
  358. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_spec/src/datatypes/builtin/time.rs +0 -0
  359. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_spec/src/datatypes/builtin/ulid.rs +0 -0
  360. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_spec/src/datatypes/builtin/uuid.rs +0 -0
  361. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_spec/src/datatypes/datatype_spec.rs +0 -0
  362. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_spec/src/datatypes/engine_registry.rs +0 -0
  363. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_spec/src/datatypes/lowerer.rs +0 -0
  364. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_spec/src/datatypes/mod.rs +0 -0
  365. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_spec/src/datatypes/reflected.rs +0 -0
  366. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_spec/src/datatypes/registry.rs +0 -0
  367. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_spec/src/datatypes/storage_type_ref.rs +0 -0
  368. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_spec/src/engine.rs +0 -0
  369. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_spec/src/errors.rs +0 -0
  370. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_spec/src/field.rs +0 -0
  371. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_spec/src/lib.rs +0 -0
  372. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_spec/src/op.rs +0 -0
  373. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_spec/src/request.rs +0 -0
  374. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_spec/src/response.rs +0 -0
  375. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_spec/src/serde/mod.rs +0 -0
  376. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_spec/src/serde/versioned.rs +0 -0
  377. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_spec/src/storage.rs +0 -0
  378. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_spec/src/table.rs +0 -0
  379. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/crates/tigrbl_rs_spec/src/values.rs +0 -0
  380. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/pkgs/core/tigrbl_runtime/src/callback_registry.rs +0 -0
  381. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/pkgs/core/tigrbl_runtime/src/errors.rs +0 -0
  382. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/pkgs/core/tigrbl_runtime/src/lib.rs +0 -0
  383. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/pkgs/core/tigrbl_runtime/src/module.rs +0 -0
  384. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/pkgs/core/tigrbl_runtime/src/py_atoms.rs +0 -0
  385. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/pkgs/core/tigrbl_runtime/src/py_engines.rs +0 -0
  386. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/pkgs/core/tigrbl_runtime/src/py_handlers.rs +0 -0
  387. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/pkgs/core/tigrbl_runtime/src/py_hooks.rs +0 -0
  388. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/pkgs/core/tigrbl_runtime/src/py_request.rs +0 -0
  389. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/pkgs/core/tigrbl_runtime/src/py_response.rs +0 -0
  390. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/pkgs/core/tigrbl_runtime/src/py_runtime.rs +0 -0
  391. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/pkgs/core/tigrbl_runtime/src/runtime_handle.rs +0 -0
  392. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/pkgs/core/tigrbl_runtime/src/spec_codec.rs +0 -0
  393. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/pkgs/core/tigrbl_runtime/tests/test_ctx_promote_compat.py +0 -0
  394. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/pkgs/core/tigrbl_runtime/tests/test_declared_dependency_imports.py +0 -0
  395. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/pkgs/core/tigrbl_runtime/tests/test_kernel_bridge.py +0 -0
  396. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/pkgs/core/tigrbl_runtime/tests/test_rust_runtime_demo_curl.py +0 -0
  397. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/pkgs/core/tigrbl_runtime/tests/test_rust_runtime_demo_docs_surface.py +0 -0
  398. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/pkgs/core/tigrbl_runtime/tests/test_smoke.py +0 -0
  399. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/tigrbl_runtime/__init__.py +0 -0
  400. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/tigrbl_runtime/channel/__init__.py +0 -0
  401. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/tigrbl_runtime/config/__init__.py +0 -0
  402. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/tigrbl_runtime/config/constants.py +0 -0
  403. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/tigrbl_runtime/executors/__init__.py +0 -0
  404. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/tigrbl_runtime/executors/helpers.py +0 -0
  405. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/tigrbl_runtime/executors/numba_packed.py +0 -0
  406. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/tigrbl_runtime/executors/phase.py +0 -0
  407. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/tigrbl_runtime/handle.py +0 -0
  408. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/tigrbl_runtime/runtime/__init__.py +0 -0
  409. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/tigrbl_runtime/runtime/_typing_aliases.py +0 -0
  410. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/tigrbl_runtime/runtime/base.py +0 -0
  411. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/tigrbl_runtime/runtime/channel.py +0 -0
  412. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/tigrbl_runtime/runtime/exceptions.py +0 -0
  413. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/tigrbl_runtime/runtime/executor/__init__.py +0 -0
  414. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/tigrbl_runtime/runtime/executor/invoke.py +0 -0
  415. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/tigrbl_runtime/runtime/hook_types.py +0 -0
  416. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/tigrbl_runtime/runtime/labels.py +0 -0
  417. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/tigrbl_runtime/runtime/response.py +0 -0
  418. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/tigrbl_runtime/runtime/status/__init__.py +0 -0
  419. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/tigrbl_runtime/runtime/status/converters.py +0 -0
  420. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/tigrbl_runtime/runtime/status/exceptions.py +0 -0
  421. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/tigrbl_runtime/runtime/status/mappings.py +0 -0
  422. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/tigrbl_runtime/runtime/status/utils.py +0 -0
  423. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/tigrbl_runtime/rust/_load_rust.py +0 -0
  424. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/tigrbl_runtime/rust/availability.py +0 -0
  425. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/tigrbl_runtime/rust/backend.py +0 -0
  426. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/tigrbl_runtime/rust/errors.py +0 -0
  427. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/tigrbl_runtime/rust/request.py +0 -0
  428. {tigrbl_runtime-0.1.12.dev1 → tigrbl_runtime-0.4.0.dev2}/tigrbl_runtime/rust/response.py +0 -0
@@ -324,7 +324,7 @@ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
324
324
 
325
325
  [[package]]
326
326
  name = "tigrbl_rs_atoms"
327
- version = "0.1.12-dev.1"
327
+ version = "0.4.0-dev.2"
328
328
  dependencies = [
329
329
  "tigrbl_rs_ports",
330
330
  "tigrbl_rs_spec",
@@ -332,7 +332,7 @@ dependencies = [
332
332
 
333
333
  [[package]]
334
334
  name = "tigrbl_rs_engine_inmemory"
335
- version = "0.1.12-dev.1"
335
+ version = "0.4.0-dev.2"
336
336
  dependencies = [
337
337
  "tigrbl_rs_ports",
338
338
  "tigrbl_rs_spec",
@@ -340,7 +340,7 @@ dependencies = [
340
340
 
341
341
  [[package]]
342
342
  name = "tigrbl_rs_engine_postgres"
343
- version = "0.1.12-dev.1"
343
+ version = "0.4.0-dev.2"
344
344
  dependencies = [
345
345
  "tigrbl_rs_ports",
346
346
  "tigrbl_rs_spec",
@@ -348,7 +348,7 @@ dependencies = [
348
348
 
349
349
  [[package]]
350
350
  name = "tigrbl_rs_engine_sqlite"
351
- version = "0.1.12-dev.1"
351
+ version = "0.4.0-dev.2"
352
352
  dependencies = [
353
353
  "rusqlite",
354
354
  "serde_json",
@@ -358,7 +358,7 @@ dependencies = [
358
358
 
359
359
  [[package]]
360
360
  name = "tigrbl_rs_kernel"
361
- version = "0.1.12-dev.1"
361
+ version = "0.4.0-dev.2"
362
362
  dependencies = [
363
363
  "tigrbl_rs_atoms",
364
364
  "tigrbl_rs_ports",
@@ -367,14 +367,14 @@ dependencies = [
367
367
 
368
368
  [[package]]
369
369
  name = "tigrbl_rs_ops_olap"
370
- version = "0.1.12-dev.1"
370
+ version = "0.4.0-dev.2"
371
371
  dependencies = [
372
372
  "tigrbl_rs_spec",
373
373
  ]
374
374
 
375
375
  [[package]]
376
376
  name = "tigrbl_rs_ops_oltp"
377
- version = "0.1.12-dev.1"
377
+ version = "0.4.0-dev.2"
378
378
  dependencies = [
379
379
  "tigrbl_rs_ports",
380
380
  "tigrbl_rs_spec",
@@ -382,21 +382,21 @@ dependencies = [
382
382
 
383
383
  [[package]]
384
384
  name = "tigrbl_rs_ops_realtime"
385
- version = "0.1.12-dev.1"
385
+ version = "0.4.0-dev.2"
386
386
  dependencies = [
387
387
  "tigrbl_rs_spec",
388
388
  ]
389
389
 
390
390
  [[package]]
391
391
  name = "tigrbl_rs_ports"
392
- version = "0.1.12-dev.1"
392
+ version = "0.4.0-dev.2"
393
393
  dependencies = [
394
394
  "tigrbl_rs_spec",
395
395
  ]
396
396
 
397
397
  [[package]]
398
398
  name = "tigrbl_rs_runtime"
399
- version = "0.1.12-dev.1"
399
+ version = "0.4.0-dev.2"
400
400
  dependencies = [
401
401
  "tigrbl_rs_atoms",
402
402
  "tigrbl_rs_engine_inmemory",
@@ -410,7 +410,7 @@ dependencies = [
410
410
 
411
411
  [[package]]
412
412
  name = "tigrbl_rs_spec"
413
- version = "0.1.12-dev.1"
413
+ version = "0.4.0-dev.2"
414
414
  dependencies = [
415
415
  "serde",
416
416
  "serde_json",
@@ -418,7 +418,7 @@ dependencies = [
418
418
 
419
419
  [[package]]
420
420
  name = "tigrbl_runtime_bindings"
421
- version = "0.1.12-dev.1"
421
+ version = "0.4.0-dev.2"
422
422
  dependencies = [
423
423
  "pyo3",
424
424
  "serde_json",
@@ -3,10 +3,12 @@ resolver = "2"
3
3
  members = ["crates/tigrbl_rs_spec", "crates/tigrbl_rs_ports", "crates/tigrbl_rs_atoms", "crates/tigrbl_rs_ops_oltp", "crates/tigrbl_rs_kernel", "crates/tigrbl_rs_runtime", "crates/tigrbl_rs_engine_sqlite", "crates/tigrbl_rs_engine_postgres", "crates/tigrbl_rs_engine_inmemory", "pkgs/core/tigrbl_runtime"]
4
4
 
5
5
  [workspace.package]
6
- version = "0.1.12-dev.1"
6
+ version = "0.4.0-dev.2"
7
7
  edition = "2021"
8
8
  license = "Apache-2.0"
9
9
  authors = ["Jacob Stewart <jacob@swarmauri.com>"]
10
+ homepage = "https://github.com/tigrbl/tigrbl"
11
+ repository = "https://github.com/tigrbl/tigrbl"
10
12
  rust-version = "1.81"
11
13
 
12
14
  [workspace.dependencies]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tigrbl-runtime
3
- Version: 0.1.12.dev1
3
+ Version: 0.4.0.dev2
4
4
  Classifier: Development Status :: 1 - Planning
5
5
  Classifier: Programming Language :: Python :: 3.10
6
6
  Classifier: Programming Language :: Python :: 3.11
@@ -17,10 +17,16 @@ Requires-Dist: tigrbl-core
17
17
  Requires-Dist: numba>=0.61.2
18
18
  Summary: Runtime pipeline and Rust execution bridge for Tigrbl.
19
19
  Keywords: tigrbl,sdk,standards,framework
20
+ Home-Page: https://github.com/tigrbl/tigrbl
20
21
  Author-email: Jacob Stewart <jacob@swarmauri.com>
21
22
  License-Expression: Apache-2.0
22
23
  Requires-Python: >=3.10, <3.14
23
24
  Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
25
+ Project-URL: Discord, https://discord.gg/K4YTAPapjR
26
+ Project-URL: Homepage, https://github.com/tigrbl/tigrbl
27
+ Project-URL: Issues, https://github.com/tigrbl/tigrbl/issues
28
+ Project-URL: Organization, https://github.com/tigrbl
29
+ Project-URL: Repository, https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_runtime
24
30
 
25
31
  # tigrbl_runtime
26
32
 
@@ -40,6 +46,10 @@ It is not the authoritative location for repository governance, current target s
40
46
 
41
47
  ## Package identity
42
48
 
49
+ - canonical repository: `https://github.com/tigrbl/tigrbl`
50
+ - organization: `https://github.com/tigrbl`
51
+ - social: `https://discord.gg/K4YTAPapjR`
52
+ - package path: `https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_runtime`
43
53
  - workspace path: `pkgs/core/tigrbl_runtime`
44
54
  - workspace class: hybrid core Python/Rust package
45
55
  - implementation layout: `tigrbl_runtime/` and `src/`
@@ -16,6 +16,10 @@ It is not the authoritative location for repository governance, current target s
16
16
 
17
17
  ## Package identity
18
18
 
19
+ - canonical repository: `https://github.com/tigrbl/tigrbl`
20
+ - organization: `https://github.com/tigrbl`
21
+ - social: `https://discord.gg/K4YTAPapjR`
22
+ - package path: `https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_runtime`
19
23
  - workspace path: `pkgs/core/tigrbl_runtime`
20
24
  - workspace class: hybrid core Python/Rust package
21
25
  - implementation layout: `tigrbl_runtime/` and `src/`
@@ -6,8 +6,10 @@ license.workspace = true
6
6
  authors.workspace = true
7
7
  rust-version.workspace = true
8
8
  description = "Rust atom catalog, phase algebra, and sys handler atoms for Tigrbl."
9
+ homepage = "https://github.com/tigrbl/tigrbl"
10
+ repository = "https://github.com/tigrbl/tigrbl"
9
11
  readme = "README.md"
10
12
 
11
13
  [dependencies]
12
- tigrbl_rs_ports = { path = "../tigrbl_rs_ports", version = "0.1.12-dev.1"}
13
- tigrbl_rs_spec = { path = "../tigrbl_rs_spec", version = "0.1.12-dev.1"}
14
+ tigrbl_rs_ports = { path = "../tigrbl_rs_ports", version = "0.4.0-dev.2"}
15
+ tigrbl_rs_spec = { path = "../tigrbl_rs_spec", version = "0.4.0-dev.2"}
@@ -16,6 +16,10 @@ It is not the authoritative location for repository governance, current target s
16
16
 
17
17
  ## Package identity
18
18
 
19
+ - canonical repository: `https://github.com/tigrbl/tigrbl`
20
+ - organization: `https://github.com/tigrbl`
21
+ - social: `https://discord.gg/K4YTAPapjR`
22
+ - crate path: `https://github.com/tigrbl/tigrbl/tree/master/crates/tigrbl_rs_atoms`
19
23
  - workspace path: `crates/tigrbl_rs_atoms`
20
24
  - workspace class: Rust crate
21
25
  - implementation layout: `src/`
@@ -6,8 +6,10 @@ license.workspace = true
6
6
  authors.workspace = true
7
7
  rust-version.workspace = true
8
8
  description = "Rust in-memory engine for Tigrbl with row-store and column-store strategies."
9
+ homepage = "https://github.com/tigrbl/tigrbl"
10
+ repository = "https://github.com/tigrbl/tigrbl"
9
11
  readme = "README.md"
10
12
 
11
13
  [dependencies]
12
- tigrbl_rs_ports = { path = "../tigrbl_rs_ports", version = "0.1.12-dev.1"}
13
- tigrbl_rs_spec = { path = "../tigrbl_rs_spec", version = "0.1.12-dev.1"}
14
+ tigrbl_rs_ports = { path = "../tigrbl_rs_ports", version = "0.4.0-dev.2"}
15
+ tigrbl_rs_spec = { path = "../tigrbl_rs_spec", version = "0.4.0-dev.2"}
@@ -16,6 +16,10 @@ It is not the authoritative location for repository governance, current target s
16
16
 
17
17
  ## Package identity
18
18
 
19
+ - canonical repository: `https://github.com/tigrbl/tigrbl`
20
+ - organization: `https://github.com/tigrbl`
21
+ - social: `https://discord.gg/K4YTAPapjR`
22
+ - crate path: `https://github.com/tigrbl/tigrbl/tree/master/crates/tigrbl_rs_engine_inmemory`
19
23
  - workspace path: `crates/tigrbl_rs_engine_inmemory`
20
24
  - workspace class: Rust crate
21
25
  - implementation layout: `src/`
@@ -9,6 +9,8 @@ use tigrbl_rs_ports::{
9
9
  };
10
10
  use tigrbl_rs_spec::{request::RequestEnvelope, response::ResponseEnvelope, values::Value};
11
11
 
12
+ const DEFAULT_ROOT_ALIAS: &str = "__tigrbl_default_root__";
13
+
12
14
  pub(crate) type Row = BTreeMap<String, Value>;
13
15
  pub(crate) type TableRows = Vec<Row>;
14
16
  pub(crate) type Store = BTreeMap<String, TableRows>;
@@ -54,10 +56,13 @@ impl TransactionPort for InmemoryTransaction {
54
56
  fn execute(
55
57
  &self,
56
58
  table: &str,
57
- _operation: &str,
59
+ operation: &str,
58
60
  kind: &str,
59
61
  request: &RequestEnvelope,
60
62
  ) -> PortResult<ResponseEnvelope> {
63
+ if kind == "read" && (table == DEFAULT_ROOT_ALIAS || operation == DEFAULT_ROOT_ALIAS) {
64
+ return Ok(default_root_response());
65
+ }
61
66
  let mut working = self
62
67
  .working
63
68
  .lock()
@@ -162,3 +167,15 @@ fn find_row_mut<'a>(rows: &'a mut [Row], request: &RequestEnvelope) -> Option<&'
162
167
  let id = find_id(request)?;
163
168
  rows.iter_mut().find(|row| row.get("id") == Some(&id))
164
169
  }
170
+
171
+ fn default_root_response() -> ResponseEnvelope {
172
+ ResponseEnvelope {
173
+ status: 200,
174
+ headers: BTreeMap::new(),
175
+ body: Value::Object(
176
+ [("ok".to_string(), Value::Bool(true))]
177
+ .into_iter()
178
+ .collect(),
179
+ ),
180
+ }
181
+ }
@@ -6,8 +6,10 @@ license.workspace = true
6
6
  authors.workspace = true
7
7
  rust-version.workspace = true
8
8
  description = "Rust Postgres engine for Tigrbl."
9
+ homepage = "https://github.com/tigrbl/tigrbl"
10
+ repository = "https://github.com/tigrbl/tigrbl"
9
11
  readme = "README.md"
10
12
 
11
13
  [dependencies]
12
- tigrbl_rs_ports = { path = "../tigrbl_rs_ports", version = "0.1.12-dev.1"}
13
- tigrbl_rs_spec = { path = "../tigrbl_rs_spec", version = "0.1.12-dev.1"}
14
+ tigrbl_rs_ports = { path = "../tigrbl_rs_ports", version = "0.4.0-dev.2"}
15
+ tigrbl_rs_spec = { path = "../tigrbl_rs_spec", version = "0.4.0-dev.2"}
@@ -16,6 +16,10 @@ It is not the authoritative location for repository governance, current target s
16
16
 
17
17
  ## Package identity
18
18
 
19
+ - canonical repository: `https://github.com/tigrbl/tigrbl`
20
+ - organization: `https://github.com/tigrbl`
21
+ - social: `https://discord.gg/K4YTAPapjR`
22
+ - crate path: `https://github.com/tigrbl/tigrbl/tree/master/crates/tigrbl_rs_engine_postgres`
19
23
  - workspace path: `crates/tigrbl_rs_engine_postgres`
20
24
  - workspace class: Rust crate
21
25
  - implementation layout: `src/`
@@ -6,10 +6,12 @@ license.workspace = true
6
6
  authors.workspace = true
7
7
  rust-version.workspace = true
8
8
  description = "Rust SQLite engine for Tigrbl."
9
+ homepage = "https://github.com/tigrbl/tigrbl"
10
+ repository = "https://github.com/tigrbl/tigrbl"
9
11
  readme = "README.md"
10
12
 
11
13
  [dependencies]
12
14
  rusqlite = { version = "0.32", features = ["bundled"] }
13
15
  serde_json.workspace = true
14
- tigrbl_rs_ports = { path = "../tigrbl_rs_ports", version = "0.1.12-dev.1"}
15
- tigrbl_rs_spec = { path = "../tigrbl_rs_spec", version = "0.1.12-dev.1"}
16
+ tigrbl_rs_ports = { path = "../tigrbl_rs_ports", version = "0.4.0-dev.2"}
17
+ tigrbl_rs_spec = { path = "../tigrbl_rs_spec", version = "0.4.0-dev.2"}
@@ -16,6 +16,10 @@ It is not the authoritative location for repository governance, current target s
16
16
 
17
17
  ## Package identity
18
18
 
19
+ - canonical repository: `https://github.com/tigrbl/tigrbl`
20
+ - organization: `https://github.com/tigrbl`
21
+ - social: `https://discord.gg/K4YTAPapjR`
22
+ - crate path: `https://github.com/tigrbl/tigrbl/tree/master/crates/tigrbl_rs_engine_sqlite`
19
23
  - workspace path: `crates/tigrbl_rs_engine_sqlite`
20
24
  - workspace class: Rust crate
21
25
  - implementation layout: `src/`
@@ -7,6 +7,8 @@ use tigrbl_rs_ports::{
7
7
  };
8
8
  use tigrbl_rs_spec::{request::RequestEnvelope, response::ResponseEnvelope, values::Value};
9
9
 
10
+ const DEFAULT_ROOT_ALIAS: &str = "__tigrbl_default_root__";
11
+
10
12
  const SCHEMA_SQL: &str = "CREATE TABLE IF NOT EXISTS _tigrbl_rows (
11
13
  table_name TEXT NOT NULL,
12
14
  row_key TEXT,
@@ -71,10 +73,13 @@ impl TransactionPort for SqliteTransaction {
71
73
  fn execute(
72
74
  &self,
73
75
  table: &str,
74
- _operation: &str,
76
+ operation: &str,
75
77
  kind: &str,
76
78
  request: &RequestEnvelope,
77
79
  ) -> PortResult<ResponseEnvelope> {
80
+ if kind == "read" && (table == DEFAULT_ROOT_ALIAS || operation == DEFAULT_ROOT_ALIAS) {
81
+ return Ok(default_root_response());
82
+ }
78
83
  match kind {
79
84
  "create" => {
80
85
  let row = body_object(&request.body)?;
@@ -261,6 +266,18 @@ fn create_relational_row(
261
266
  })
262
267
  }
263
268
 
269
+ fn default_root_response() -> ResponseEnvelope {
270
+ ResponseEnvelope {
271
+ status: 200,
272
+ headers: BTreeMap::new(),
273
+ body: Value::Object(
274
+ [("ok".to_string(), Value::Bool(true))]
275
+ .into_iter()
276
+ .collect(),
277
+ ),
278
+ }
279
+ }
280
+
264
281
  fn select_relational_row(
265
282
  connection: &Connection,
266
283
  table: &str,
@@ -0,0 +1,16 @@
1
+ [package]
2
+ name = "tigrbl_rs_kernel"
3
+ version.workspace = true
4
+ edition.workspace = true
5
+ license.workspace = true
6
+ authors.workspace = true
7
+ rust-version.workspace = true
8
+ description = "Rust kernel compiler, packed plan model, and optimizer passes for Tigrbl."
9
+ homepage = "https://github.com/tigrbl/tigrbl"
10
+ repository = "https://github.com/tigrbl/tigrbl"
11
+ readme = "README.md"
12
+
13
+ [dependencies]
14
+ tigrbl_rs_atoms = { path = "../tigrbl_rs_atoms", version = "0.4.0-dev.2"}
15
+ tigrbl_rs_ports = { path = "../tigrbl_rs_ports", version = "0.4.0-dev.2"}
16
+ tigrbl_rs_spec = { path = "../tigrbl_rs_spec", version = "0.4.0-dev.2"}
@@ -16,6 +16,10 @@ It is not the authoritative location for repository governance, current target s
16
16
 
17
17
  ## Package identity
18
18
 
19
+ - canonical repository: `https://github.com/tigrbl/tigrbl`
20
+ - organization: `https://github.com/tigrbl`
21
+ - social: `https://discord.gg/K4YTAPapjR`
22
+ - crate path: `https://github.com/tigrbl/tigrbl/tree/master/crates/tigrbl_rs_kernel`
19
23
  - workspace path: `crates/tigrbl_rs_kernel`
20
24
  - workspace class: Rust crate
21
25
  - implementation layout: `src/`
@@ -1,5 +1,9 @@
1
1
  use crate::plan::{KernelPlan, PackedPlan, PlanBinding, PlanRoute};
2
2
  use tigrbl_rs_spec::app::AppSpec;
3
+ use tigrbl_rs_spec::{BindingSpec, Exchange, OpKind, OpSpec, TableSpec, TxScope};
4
+
5
+ const DEFAULT_ROOT_ALIAS: &str = "__tigrbl_default_root__";
6
+ const DEFAULT_ROOT_PATH: &str = "/";
3
7
 
4
8
  #[derive(Debug, Clone, Default)]
5
9
  pub struct KernelCompiler;
@@ -20,9 +24,12 @@ impl KernelCompiler {
20
24
  .map(|engine| tigrbl_rs_spec::Value::Object(engine.options.clone()))
21
25
  .unwrap_or(tigrbl_rs_spec::Value::Null);
22
26
  let default_engine_callback = default_engine.and_then(|engine| engine.callback);
27
+ let mut source_bindings = app.bindings.clone();
28
+ if !has_root_binding(&source_bindings) {
29
+ source_bindings.push(default_root_binding());
30
+ }
23
31
 
24
- let bindings = app
25
- .bindings
32
+ let bindings = source_bindings
26
33
  .iter()
27
34
  .map(|binding| PlanBinding {
28
35
  alias: binding.alias.clone(),
@@ -92,11 +99,59 @@ impl KernelCompiler {
92
99
  .map(|(key, value)| (key.clone(), tigrbl_rs_spec::Value::String(value.clone())))
93
100
  .collect(),
94
101
  ),
95
- packed: Some(PackedPlan::from_binding_count(app.bindings.len())),
102
+ packed: Some(PackedPlan::from_binding_count(source_bindings.len())),
96
103
  }
97
104
  }
98
105
  }
99
106
 
107
+ fn has_root_binding(bindings: &[BindingSpec]) -> bool {
108
+ bindings.iter().any(is_root_binding)
109
+ }
110
+
111
+ fn is_root_binding(binding: &BindingSpec) -> bool {
112
+ binding.transport == "rest" && normalize_path(binding_path(binding)) == "/"
113
+ }
114
+
115
+ fn binding_path(binding: &BindingSpec) -> String {
116
+ binding
117
+ .path
118
+ .clone()
119
+ .or_else(|| binding.op.route.clone())
120
+ .unwrap_or_else(|| format!("/{}", binding.alias))
121
+ }
122
+
123
+ fn default_root_binding() -> BindingSpec {
124
+ BindingSpec {
125
+ alias: DEFAULT_ROOT_ALIAS.to_string(),
126
+ transport: "rest".to_string(),
127
+ path: Some(DEFAULT_ROOT_PATH.to_string()),
128
+ family: "rest".to_string(),
129
+ framing: None,
130
+ op: OpSpec {
131
+ kind: OpKind::Read,
132
+ name: DEFAULT_ROOT_ALIAS.to_string(),
133
+ route: Some(DEFAULT_ROOT_PATH.to_string()),
134
+ exchange: Exchange::RequestResponse,
135
+ tx_scope: TxScope::Inherit,
136
+ subevents: vec![],
137
+ },
138
+ table: Some(TableSpec {
139
+ name: DEFAULT_ROOT_ALIAS.to_string(),
140
+ columns: vec![],
141
+ }),
142
+ hooks: vec![],
143
+ }
144
+ }
145
+
146
+ fn normalize_path(path: String) -> String {
147
+ let trimmed = path.trim_end_matches('/');
148
+ if trimmed.is_empty() {
149
+ "/".to_string()
150
+ } else {
151
+ trimmed.to_string()
152
+ }
153
+ }
154
+
100
155
  fn route_method(transport: &str, op_kind: &str) -> String {
101
156
  match transport {
102
157
  "rest" => match op_kind {
@@ -52,7 +52,7 @@ fn phase_plan(binding: &BindingSpec) -> Vec<String> {
52
52
  ];
53
53
  if binding.op.tx_scope != TxScope::None {
54
54
  phases.insert(2, "START_TX".to_string());
55
- phases.push("END_TX".to_string());
55
+ phases.push("TX_COMMIT".to_string());
56
56
  }
57
57
  if binding.transport == "sse"
58
58
  || binding.transport == "ws"
@@ -34,10 +34,11 @@ fn compiler_preserves_binding_aliases_and_packs_counts() {
34
34
 
35
35
  let plan = KernelCompiler.compile(&app);
36
36
  assert_eq!(plan.app_name, "demo");
37
- assert_eq!(plan.bindings.len(), 2);
37
+ assert_eq!(plan.bindings.len(), 3);
38
38
  assert_eq!(plan.bindings[0].alias, "create_user");
39
+ assert_eq!(plan.bindings[2].alias, "__tigrbl_default_root__");
39
40
  let packed = plan.packed.expect("packed plan");
40
- assert_eq!(packed.segments, 2);
41
- assert_eq!(packed.fused_steps, 2);
41
+ assert_eq!(packed.segments, 3);
42
+ assert_eq!(packed.fused_steps, 3);
42
43
  assert_eq!(packed.hot_paths, 1);
43
44
  }
@@ -58,7 +58,7 @@ fn kernel_parity_snapshot_covers_routes_opviews_phases_packed_and_docs() {
58
58
  "PRE_HANDLER",
59
59
  "HANDLER",
60
60
  "POST_HANDLER",
61
- "END_TX",
61
+ "TX_COMMIT",
62
62
  "POST_RESPONSE",
63
63
  ]
64
64
  );
@@ -74,7 +74,7 @@ fn kernel_parity_snapshot_covers_routes_opviews_phases_packed_and_docs() {
74
74
  "POST_RESPONSE",
75
75
  ]
76
76
  );
77
- assert_eq!(snapshot.packed_plan.segments, 2);
77
+ assert_eq!(snapshot.packed_plan.segments, 3);
78
78
  assert_eq!(snapshot.docs.openapi_paths, vec!["/widgets".to_string()]);
79
79
  assert_eq!(snapshot.docs.asyncapi_channels, vec!["/events".to_string()]);
80
80
  }
@@ -6,8 +6,10 @@ license.workspace = true
6
6
  authors.workspace = true
7
7
  rust-version.workspace = true
8
8
  description = "Rust OLTP CRUD and bulk handler semantics for Tigrbl."
9
+ homepage = "https://github.com/tigrbl/tigrbl"
10
+ repository = "https://github.com/tigrbl/tigrbl"
9
11
  readme = "README.md"
10
12
 
11
13
  [dependencies]
12
- tigrbl_rs_ports = { path = "../tigrbl_rs_ports", version = "0.1.12-dev.1"}
13
- tigrbl_rs_spec = { path = "../tigrbl_rs_spec", version = "0.1.12-dev.1"}
14
+ tigrbl_rs_ports = { path = "../tigrbl_rs_ports", version = "0.4.0-dev.2"}
15
+ tigrbl_rs_spec = { path = "../tigrbl_rs_spec", version = "0.4.0-dev.2"}
@@ -16,6 +16,10 @@ It is not the authoritative location for repository governance, current target s
16
16
 
17
17
  ## Package identity
18
18
 
19
+ - canonical repository: `https://github.com/tigrbl/tigrbl`
20
+ - organization: `https://github.com/tigrbl`
21
+ - social: `https://discord.gg/K4YTAPapjR`
22
+ - crate path: `https://github.com/tigrbl/tigrbl/tree/master/crates/tigrbl_rs_ops_oltp`
19
23
  - workspace path: `crates/tigrbl_rs_ops_oltp`
20
24
  - workspace class: Rust crate
21
25
  - implementation layout: `src/`
@@ -6,7 +6,9 @@ license.workspace = true
6
6
  authors.workspace = true
7
7
  rust-version.workspace = true
8
8
  description = "Trait and envelope boundaries for Rust atoms, handlers, engines, and callbacks."
9
+ homepage = "https://github.com/tigrbl/tigrbl"
10
+ repository = "https://github.com/tigrbl/tigrbl"
9
11
  readme = "README.md"
10
12
 
11
13
  [dependencies]
12
- tigrbl_rs_spec = { path = "../tigrbl_rs_spec", version = "0.1.12-dev.1"}
14
+ tigrbl_rs_spec = { path = "../tigrbl_rs_spec", version = "0.4.0-dev.2"}
@@ -16,6 +16,10 @@ It is not the authoritative location for repository governance, current target s
16
16
 
17
17
  ## Package identity
18
18
 
19
+ - canonical repository: `https://github.com/tigrbl/tigrbl`
20
+ - organization: `https://github.com/tigrbl`
21
+ - social: `https://discord.gg/K4YTAPapjR`
22
+ - crate path: `https://github.com/tigrbl/tigrbl/tree/master/crates/tigrbl_rs_ports`
19
23
  - workspace path: `crates/tigrbl_rs_ports`
20
24
  - workspace class: Rust crate
21
25
  - implementation layout: `src/`
@@ -6,14 +6,16 @@ license.workspace = true
6
6
  authors.workspace = true
7
7
  rust-version.workspace = true
8
8
  description = "Rust runtime and executor for compiled Tigrbl kernel plans."
9
+ homepage = "https://github.com/tigrbl/tigrbl"
10
+ repository = "https://github.com/tigrbl/tigrbl"
9
11
  readme = "README.md"
10
12
 
11
13
  [dependencies]
12
- tigrbl_rs_atoms = { path = "../tigrbl_rs_atoms", version = "0.1.12-dev.1"}
13
- tigrbl_rs_engine_inmemory = { path = "../tigrbl_rs_engine_inmemory", version = "0.1.12-dev.1"}
14
- tigrbl_rs_engine_postgres = { path = "../tigrbl_rs_engine_postgres", version = "0.1.12-dev.1"}
15
- tigrbl_rs_engine_sqlite = { path = "../tigrbl_rs_engine_sqlite", version = "0.1.12-dev.1"}
16
- tigrbl_rs_kernel = { path = "../tigrbl_rs_kernel", version = "0.1.12-dev.1"}
17
- tigrbl_rs_ops_oltp = { path = "../tigrbl_rs_ops_oltp", version = "0.1.12-dev.1"}
18
- tigrbl_rs_ports = { path = "../tigrbl_rs_ports", version = "0.1.12-dev.1"}
19
- tigrbl_rs_spec = { path = "../tigrbl_rs_spec", version = "0.1.12-dev.1"}
14
+ tigrbl_rs_atoms = { path = "../tigrbl_rs_atoms", version = "0.4.0-dev.2"}
15
+ tigrbl_rs_engine_inmemory = { path = "../tigrbl_rs_engine_inmemory", version = "0.4.0-dev.2"}
16
+ tigrbl_rs_engine_postgres = { path = "../tigrbl_rs_engine_postgres", version = "0.4.0-dev.2"}
17
+ tigrbl_rs_engine_sqlite = { path = "../tigrbl_rs_engine_sqlite", version = "0.4.0-dev.2"}
18
+ tigrbl_rs_kernel = { path = "../tigrbl_rs_kernel", version = "0.4.0-dev.2"}
19
+ tigrbl_rs_ops_oltp = { path = "../tigrbl_rs_ops_oltp", version = "0.4.0-dev.2"}
20
+ tigrbl_rs_ports = { path = "../tigrbl_rs_ports", version = "0.4.0-dev.2"}
21
+ tigrbl_rs_spec = { path = "../tigrbl_rs_spec", version = "0.4.0-dev.2"}
@@ -16,6 +16,10 @@ It is not the authoritative location for repository governance, current target s
16
16
 
17
17
  ## Package identity
18
18
 
19
+ - canonical repository: `https://github.com/tigrbl/tigrbl`
20
+ - organization: `https://github.com/tigrbl`
21
+ - social: `https://discord.gg/K4YTAPapjR`
22
+ - crate path: `https://github.com/tigrbl/tigrbl/tree/master/crates/tigrbl_rs_runtime`
19
23
  - workspace path: `crates/tigrbl_rs_runtime`
20
24
  - workspace class: Rust crate
21
25
  - implementation layout: `src/`