tigrbl-runtime 0.4.0.dev2__tar.gz → 0.4.1.dev3__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 (445) hide show
  1. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/Cargo.lock +14 -14
  2. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/Cargo.toml +1 -1
  3. tigrbl_runtime-0.4.1.dev3/LICENSE +201 -0
  4. tigrbl_runtime-0.4.1.dev3/PKG-INFO +165 -0
  5. tigrbl_runtime-0.4.1.dev3/README.md +126 -0
  6. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/Cargo.toml +2 -2
  7. tigrbl_runtime-0.4.1.dev3/crates/tigrbl_rs_atoms/README.md +95 -0
  8. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_engine_inmemory/Cargo.toml +2 -2
  9. tigrbl_runtime-0.4.1.dev3/crates/tigrbl_rs_engine_inmemory/README.md +95 -0
  10. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_engine_postgres/Cargo.toml +2 -2
  11. tigrbl_runtime-0.4.1.dev3/crates/tigrbl_rs_engine_postgres/README.md +95 -0
  12. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_engine_sqlite/Cargo.toml +2 -2
  13. tigrbl_runtime-0.4.1.dev3/crates/tigrbl_rs_engine_sqlite/README.md +95 -0
  14. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_kernel/Cargo.toml +3 -3
  15. tigrbl_runtime-0.4.1.dev3/crates/tigrbl_rs_kernel/README.md +95 -0
  16. tigrbl_runtime-0.4.1.dev3/crates/tigrbl_rs_kernel/src/opt/hot_paths.rs +29 -0
  17. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_kernel/tests/kernel_contract.rs +37 -0
  18. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ops_oltp/Cargo.toml +2 -2
  19. tigrbl_runtime-0.4.1.dev3/crates/tigrbl_rs_ops_oltp/README.md +95 -0
  20. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ports/Cargo.toml +1 -1
  21. tigrbl_runtime-0.4.1.dev3/crates/tigrbl_rs_ports/README.md +95 -0
  22. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_runtime/Cargo.toml +8 -8
  23. tigrbl_runtime-0.4.1.dev3/crates/tigrbl_rs_runtime/README.md +95 -0
  24. tigrbl_runtime-0.4.1.dev3/crates/tigrbl_rs_spec/README.md +95 -0
  25. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/pkgs/core/tigrbl_runtime/Cargo.toml +3 -3
  26. tigrbl_runtime-0.4.1.dev3/pkgs/core/tigrbl_runtime/LICENSE +201 -0
  27. tigrbl_runtime-0.4.1.dev3/pkgs/core/tigrbl_runtime/README.md +126 -0
  28. tigrbl_runtime-0.4.1.dev3/pkgs/core/tigrbl_runtime/tests/test_packed_hot_run_dispatch.py +43 -0
  29. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/pyproject.toml +31 -9
  30. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/executors/invoke.py +12 -7
  31. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/executors/packed.py +198 -25
  32. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/protocol/__init__.py +7 -0
  33. tigrbl_runtime-0.4.1.dev3/tigrbl_runtime/protocol/anchors.py +38 -0
  34. tigrbl_runtime-0.4.1.dev3/tigrbl_runtime/protocol/app_frame_codec.py +111 -0
  35. tigrbl_runtime-0.4.1.dev3/tigrbl_runtime/protocol/completion_fence.py +41 -0
  36. tigrbl_runtime-0.4.1.dev3/tigrbl_runtime/protocol/dispatch_atoms.py +46 -0
  37. tigrbl_runtime-0.4.1.dev3/tigrbl_runtime/protocol/framing_atoms.py +50 -0
  38. tigrbl_runtime-0.4.1.dev3/tigrbl_runtime/protocol/loop_modes.py +24 -0
  39. tigrbl_runtime-0.4.1.dev3/tigrbl_runtime/protocol/scope_schemas.py +63 -0
  40. tigrbl_runtime-0.4.0.dev2/PKG-INFO +0 -58
  41. tigrbl_runtime-0.4.0.dev2/README.md +0 -27
  42. tigrbl_runtime-0.4.0.dev2/crates/tigrbl_rs_atoms/README.md +0 -27
  43. tigrbl_runtime-0.4.0.dev2/crates/tigrbl_rs_engine_inmemory/README.md +0 -27
  44. tigrbl_runtime-0.4.0.dev2/crates/tigrbl_rs_engine_postgres/README.md +0 -27
  45. tigrbl_runtime-0.4.0.dev2/crates/tigrbl_rs_engine_sqlite/README.md +0 -27
  46. tigrbl_runtime-0.4.0.dev2/crates/tigrbl_rs_kernel/README.md +0 -27
  47. tigrbl_runtime-0.4.0.dev2/crates/tigrbl_rs_kernel/src/opt/hot_paths.rs +0 -5
  48. tigrbl_runtime-0.4.0.dev2/crates/tigrbl_rs_ops_oltp/README.md +0 -27
  49. tigrbl_runtime-0.4.0.dev2/crates/tigrbl_rs_ports/README.md +0 -27
  50. tigrbl_runtime-0.4.0.dev2/crates/tigrbl_rs_runtime/README.md +0 -27
  51. tigrbl_runtime-0.4.0.dev2/crates/tigrbl_rs_spec/README.md +0 -27
  52. tigrbl_runtime-0.4.0.dev2/pkgs/core/tigrbl_runtime/README.md +0 -27
  53. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/algebra.rs +0 -0
  54. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/atom.rs +0 -0
  55. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/context/base.rs +0 -0
  56. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/context/bound.rs +0 -0
  57. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/context/egress.rs +0 -0
  58. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/context/encoded.rs +0 -0
  59. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/context/error.rs +0 -0
  60. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/context/ingress.rs +0 -0
  61. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/context/mod.rs +0 -0
  62. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/context/phase_db.rs +0 -0
  63. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/context/planned.rs +0 -0
  64. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/context/resolved.rs +0 -0
  65. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/context/result.rs +0 -0
  66. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/dep/extra.rs +0 -0
  67. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/dep/mod.rs +0 -0
  68. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/dep/param_resolver.rs +0 -0
  69. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/dep/security.rs +0 -0
  70. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/dispatch/binding_match.rs +0 -0
  71. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/dispatch/binding_parse.rs +0 -0
  72. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/dispatch/input_normalize.rs +0 -0
  73. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/dispatch/mod.rs +0 -0
  74. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/dispatch/op_resolve.rs +0 -0
  75. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/egress/asgi_send.rs +0 -0
  76. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/egress/envelope_apply.rs +0 -0
  77. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/egress/headers_apply.rs +0 -0
  78. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/egress/http_finalize.rs +0 -0
  79. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/egress/mod.rs +0 -0
  80. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/egress/out_dump.rs +0 -0
  81. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/egress/result_normalize.rs +0 -0
  82. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/egress/to_transport_response.rs +0 -0
  83. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/emit/mod.rs +0 -0
  84. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/emit/paired_post.rs +0 -0
  85. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/emit/paired_pre.rs +0 -0
  86. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/emit/readtime_alias.rs +0 -0
  87. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/err/mod.rs +0 -0
  88. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/err/rollback.rs +0 -0
  89. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/events.rs +0 -0
  90. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/ingress/ctx_init.rs +0 -0
  91. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/ingress/input_prepare.rs +0 -0
  92. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/ingress/mod.rs +0 -0
  93. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/ingress/transport_extract.rs +0 -0
  94. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/labels.rs +0 -0
  95. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/lib.rs +0 -0
  96. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/macros.rs +0 -0
  97. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/out/masking.rs +0 -0
  98. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/out/mod.rs +0 -0
  99. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/phases.rs +0 -0
  100. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/python/atom_callback.rs +0 -0
  101. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/python/mod.rs +0 -0
  102. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/python/predicate_callback.rs +0 -0
  103. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/refresh/demand.rs +0 -0
  104. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/refresh/mod.rs +0 -0
  105. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/registry.rs +0 -0
  106. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/resolve/assemble.rs +0 -0
  107. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/resolve/mod.rs +0 -0
  108. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/resolve/paired_gen.rs +0 -0
  109. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/response/error_to_transport.rs +0 -0
  110. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/response/headers_from_payload.rs +0 -0
  111. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/response/mod.rs +0 -0
  112. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/response/negotiate.rs +0 -0
  113. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/response/negotiation.rs +0 -0
  114. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/response/render.rs +0 -0
  115. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/response/renderer.rs +0 -0
  116. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/response/template.rs +0 -0
  117. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/response/templates.rs +0 -0
  118. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/schema/collect_in.rs +0 -0
  119. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/schema/collect_out.rs +0 -0
  120. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/schema/mod.rs +0 -0
  121. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/stages.rs +0 -0
  122. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/storage/mod.rs +0 -0
  123. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/storage/to_stored.rs +0 -0
  124. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/sys/commit_tx.rs +0 -0
  125. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/sys/db.rs +0 -0
  126. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/sys/handler_aggregate.rs +0 -0
  127. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/sys/handler_append_chunk.rs +0 -0
  128. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/sys/handler_bulk_create.rs +0 -0
  129. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/sys/handler_bulk_delete.rs +0 -0
  130. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/sys/handler_bulk_merge.rs +0 -0
  131. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/sys/handler_bulk_replace.rs +0 -0
  132. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/sys/handler_bulk_update.rs +0 -0
  133. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/sys/handler_checkpoint.rs +0 -0
  134. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/sys/handler_clear.rs +0 -0
  135. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/sys/handler_count.rs +0 -0
  136. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/sys/handler_create.rs +0 -0
  137. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/sys/handler_custom.rs +0 -0
  138. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/sys/handler_delete.rs +0 -0
  139. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/sys/handler_download.rs +0 -0
  140. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/sys/handler_exists.rs +0 -0
  141. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/sys/handler_group_by.rs +0 -0
  142. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/sys/handler_list.rs +0 -0
  143. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/sys/handler_merge.rs +0 -0
  144. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/sys/handler_noop.rs +0 -0
  145. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/sys/handler_persistence.rs +0 -0
  146. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/sys/handler_publish.rs +0 -0
  147. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/sys/handler_read.rs +0 -0
  148. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/sys/handler_replace.rs +0 -0
  149. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/sys/handler_send_datagram.rs +0 -0
  150. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/sys/handler_subscribe.rs +0 -0
  151. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/sys/handler_tail.rs +0 -0
  152. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/sys/handler_update.rs +0 -0
  153. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/sys/handler_upload.rs +0 -0
  154. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/sys/mod.rs +0 -0
  155. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/sys/oltp_context.rs +0 -0
  156. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/sys/phase_db.rs +0 -0
  157. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/sys/start_tx.rs +0 -0
  158. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/wire/build_in.rs +0 -0
  159. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/wire/build_out.rs +0 -0
  160. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/wire/dump.rs +0 -0
  161. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/wire/mod.rs +0 -0
  162. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/src/wire/validate_in.rs +0 -0
  163. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_atoms/tests/atom_contract.rs +0 -0
  164. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_engine_inmemory/src/catalog.rs +0 -0
  165. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_engine_inmemory/src/column_store.rs +0 -0
  166. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_engine_inmemory/src/engine.rs +0 -0
  167. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_engine_inmemory/src/index.rs +0 -0
  168. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_engine_inmemory/src/lib.rs +0 -0
  169. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_engine_inmemory/src/lowerer.rs +0 -0
  170. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_engine_inmemory/src/row_store.rs +0 -0
  171. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_engine_inmemory/src/session.rs +0 -0
  172. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_engine_inmemory/src/snapshot.rs +0 -0
  173. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_engine_inmemory/src/table.rs +0 -0
  174. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_engine_inmemory/src/tx.rs +0 -0
  175. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_engine_inmemory/tests/inmemory_engine_contract.rs +0 -0
  176. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_engine_postgres/src/codec.rs +0 -0
  177. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_engine_postgres/src/ddl.rs +0 -0
  178. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_engine_postgres/src/engine.rs +0 -0
  179. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_engine_postgres/src/lib.rs +0 -0
  180. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_engine_postgres/src/lowerer.rs +0 -0
  181. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_engine_postgres/src/query.rs +0 -0
  182. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_engine_postgres/src/reflect.rs +0 -0
  183. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_engine_postgres/src/row.rs +0 -0
  184. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_engine_postgres/src/session.rs +0 -0
  185. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_engine_postgres/src/tx.rs +0 -0
  186. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_engine_postgres/tests/postgres_engine_contract.rs +0 -0
  187. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_engine_sqlite/src/codec.rs +0 -0
  188. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_engine_sqlite/src/ddl.rs +0 -0
  189. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_engine_sqlite/src/engine.rs +0 -0
  190. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_engine_sqlite/src/lib.rs +0 -0
  191. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_engine_sqlite/src/lowerer.rs +0 -0
  192. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_engine_sqlite/src/query.rs +0 -0
  193. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_engine_sqlite/src/reflect.rs +0 -0
  194. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_engine_sqlite/src/row.rs +0 -0
  195. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_engine_sqlite/src/session.rs +0 -0
  196. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_engine_sqlite/src/tx.rs +0 -0
  197. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_engine_sqlite/tests/sqlite_engine_contract.rs +0 -0
  198. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_kernel/src/builder.rs +0 -0
  199. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_kernel/src/cache.rs +0 -0
  200. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_kernel/src/compile.rs +0 -0
  201. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_kernel/src/explain.rs +0 -0
  202. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_kernel/src/inject/deps.rs +0 -0
  203. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_kernel/src/inject/mod.rs +0 -0
  204. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_kernel/src/inject/phase_db.rs +0 -0
  205. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_kernel/src/inject/sys_handlers.rs +0 -0
  206. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_kernel/src/labels.rs +0 -0
  207. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_kernel/src/lib.rs +0 -0
  208. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_kernel/src/opt/barriers.rs +0 -0
  209. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_kernel/src/opt/compaction.rs +0 -0
  210. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_kernel/src/opt/dead_steps.rs +0 -0
  211. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_kernel/src/opt/deforestation.rs +0 -0
  212. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_kernel/src/opt/fusion.rs +0 -0
  213. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_kernel/src/opt/mod.rs +0 -0
  214. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_kernel/src/opt/schedule.rs +0 -0
  215. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_kernel/src/opview/compiler.rs +0 -0
  216. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_kernel/src/opview/mod.rs +0 -0
  217. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_kernel/src/opview/schema_in.rs +0 -0
  218. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_kernel/src/opview/schema_out.rs +0 -0
  219. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_kernel/src/parity.rs +0 -0
  220. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_kernel/src/plan/hashing.rs +0 -0
  221. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_kernel/src/plan/hot.rs +0 -0
  222. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_kernel/src/plan/mod.rs +0 -0
  223. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_kernel/src/plan/models.rs +0 -0
  224. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_kernel/src/plan/packed.rs +0 -0
  225. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_kernel/src/plan/phase.rs +0 -0
  226. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_kernel/src/plan/segment.rs +0 -0
  227. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_kernel/src/route/mod.rs +0 -0
  228. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_kernel/src/route/rest.rs +0 -0
  229. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_kernel/src/route/rpc.rs +0 -0
  230. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_kernel/src/route/ws.rs +0 -0
  231. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_kernel/src/trace.rs +0 -0
  232. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_kernel/tests/parity_contract.rs +0 -0
  233. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ops_oltp/src/bulk/create.rs +0 -0
  234. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ops_oltp/src/bulk/delete.rs +0 -0
  235. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ops_oltp/src/bulk/merge.rs +0 -0
  236. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ops_oltp/src/bulk/mod.rs +0 -0
  237. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ops_oltp/src/bulk/replace.rs +0 -0
  238. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ops_oltp/src/bulk/update.rs +0 -0
  239. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ops_oltp/src/handlers/custom.rs +0 -0
  240. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ops_oltp/src/handlers/mod.rs +0 -0
  241. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ops_oltp/src/handlers/registry.rs +0 -0
  242. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ops_oltp/src/lib.rs +0 -0
  243. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ops_oltp/src/model/defaults.rs +0 -0
  244. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ops_oltp/src/model/enums.rs +0 -0
  245. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ops_oltp/src/model/filters.rs +0 -0
  246. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ops_oltp/src/model/materialize.rs +0 -0
  247. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ops_oltp/src/model/mod.rs +0 -0
  248. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ops_oltp/src/model/normalize.rs +0 -0
  249. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ops_oltp/src/model/patch.rs +0 -0
  250. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ops_oltp/src/params.rs +0 -0
  251. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ops_oltp/src/python/handler_callback.rs +0 -0
  252. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ops_oltp/src/python/mod.rs +0 -0
  253. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ops_oltp/src/result/list.rs +0 -0
  254. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ops_oltp/src/result/mod.rs +0 -0
  255. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ops_oltp/src/result/mutate.rs +0 -0
  256. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ops_oltp/src/result/read.rs +0 -0
  257. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ops_oltp/src/verbs/clear.rs +0 -0
  258. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ops_oltp/src/verbs/count.rs +0 -0
  259. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ops_oltp/src/verbs/create.rs +0 -0
  260. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ops_oltp/src/verbs/delete.rs +0 -0
  261. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ops_oltp/src/verbs/exists.rs +0 -0
  262. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ops_oltp/src/verbs/list.rs +0 -0
  263. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ops_oltp/src/verbs/merge.rs +0 -0
  264. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ops_oltp/src/verbs/mod.rs +0 -0
  265. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ops_oltp/src/verbs/read.rs +0 -0
  266. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ops_oltp/src/verbs/replace.rs +0 -0
  267. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ops_oltp/src/verbs/update.rs +0 -0
  268. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ops_oltp/tests/ops_contract.rs +0 -0
  269. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ports/src/atoms.rs +0 -0
  270. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ports/src/callbacks.rs +0 -0
  271. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ports/src/channel.rs +0 -0
  272. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ports/src/engines.rs +0 -0
  273. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ports/src/errors.rs +0 -0
  274. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ports/src/handlers.rs +0 -0
  275. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ports/src/lib.rs +0 -0
  276. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ports/src/sessions.rs +0 -0
  277. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ports/src/transactions.rs +0 -0
  278. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ports/src/values.rs +0 -0
  279. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_ports/tests/ports_contract.rs +0 -0
  280. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_runtime/src/callback/fence.rs +0 -0
  281. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_runtime/src/callback/mod.rs +0 -0
  282. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_runtime/src/callback/python.rs +0 -0
  283. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_runtime/src/callback/registry.rs +0 -0
  284. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_runtime/src/callback/rust.rs +0 -0
  285. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_runtime/src/channel/adapter.rs +0 -0
  286. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_runtime/src/channel/mod.rs +0 -0
  287. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_runtime/src/config.rs +0 -0
  288. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_runtime/src/engine/mod.rs +0 -0
  289. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_runtime/src/engine/registry.rs +0 -0
  290. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_runtime/src/engine/resolver.rs +0 -0
  291. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_runtime/src/executor/fused.rs +0 -0
  292. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_runtime/src/executor/invoke.rs +0 -0
  293. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_runtime/src/executor/mod.rs +0 -0
  294. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_runtime/src/executor/packed.rs +0 -0
  295. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_runtime/src/executor/phase.rs +0 -0
  296. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_runtime/src/executor/rollback.rs +0 -0
  297. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_runtime/src/handle/mod.rs +0 -0
  298. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_runtime/src/handle/plan_handle.rs +0 -0
  299. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_runtime/src/handle/runtime_handle.rs +0 -0
  300. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_runtime/src/lib.rs +0 -0
  301. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_runtime/src/metrics.rs +0 -0
  302. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_runtime/src/parity.rs +0 -0
  303. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_runtime/src/request.rs +0 -0
  304. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_runtime/src/response.rs +0 -0
  305. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_runtime/src/runtime.rs +0 -0
  306. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_runtime/src/status.rs +0 -0
  307. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_runtime/src/trace.rs +0 -0
  308. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_runtime/tests/channel_contract.rs +0 -0
  309. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_runtime/tests/parity_contract.rs +0 -0
  310. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_runtime/tests/runtime_contract.rs +0 -0
  311. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_spec/Cargo.toml +0 -0
  312. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_spec/src/app.rs +0 -0
  313. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_spec/src/binding.rs +0 -0
  314. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_spec/src/callback.rs +0 -0
  315. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_spec/src/column.rs +0 -0
  316. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_spec/src/datatypes/adapter.rs +0 -0
  317. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_spec/src/datatypes/bridge.rs +0 -0
  318. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_spec/src/datatypes/builtin/array.rs +0 -0
  319. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_spec/src/datatypes/builtin/boolean.rs +0 -0
  320. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_spec/src/datatypes/builtin/bytes.rs +0 -0
  321. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_spec/src/datatypes/builtin/date.rs +0 -0
  322. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_spec/src/datatypes/builtin/datetime.rs +0 -0
  323. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_spec/src/datatypes/builtin/decimal.rs +0 -0
  324. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_spec/src/datatypes/builtin/duration.rs +0 -0
  325. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_spec/src/datatypes/builtin/enum_.rs +0 -0
  326. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_spec/src/datatypes/builtin/integer.rs +0 -0
  327. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_spec/src/datatypes/builtin/json.rs +0 -0
  328. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_spec/src/datatypes/builtin/mod.rs +0 -0
  329. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_spec/src/datatypes/builtin/number.rs +0 -0
  330. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_spec/src/datatypes/builtin/object.rs +0 -0
  331. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_spec/src/datatypes/builtin/string.rs +0 -0
  332. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_spec/src/datatypes/builtin/time.rs +0 -0
  333. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_spec/src/datatypes/builtin/ulid.rs +0 -0
  334. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_spec/src/datatypes/builtin/uuid.rs +0 -0
  335. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_spec/src/datatypes/datatype_spec.rs +0 -0
  336. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_spec/src/datatypes/engine_registry.rs +0 -0
  337. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_spec/src/datatypes/lowerer.rs +0 -0
  338. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_spec/src/datatypes/mod.rs +0 -0
  339. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_spec/src/datatypes/reflected.rs +0 -0
  340. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_spec/src/datatypes/registry.rs +0 -0
  341. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_spec/src/datatypes/storage_type_ref.rs +0 -0
  342. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_spec/src/engine.rs +0 -0
  343. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_spec/src/errors.rs +0 -0
  344. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_spec/src/field.rs +0 -0
  345. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_spec/src/hook.rs +0 -0
  346. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_spec/src/lib.rs +0 -0
  347. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_spec/src/op.rs +0 -0
  348. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_spec/src/request.rs +0 -0
  349. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_spec/src/response.rs +0 -0
  350. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_spec/src/serde/json.rs +0 -0
  351. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_spec/src/serde/mod.rs +0 -0
  352. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_spec/src/serde/versioned.rs +0 -0
  353. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_spec/src/storage.rs +0 -0
  354. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_spec/src/table.rs +0 -0
  355. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_spec/src/values.rs +0 -0
  356. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/crates/tigrbl_rs_spec/tests/spec_contract.rs +0 -0
  357. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/pkgs/core/tigrbl_runtime/src/callback_registry.rs +0 -0
  358. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/pkgs/core/tigrbl_runtime/src/errors.rs +0 -0
  359. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/pkgs/core/tigrbl_runtime/src/lib.rs +0 -0
  360. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/pkgs/core/tigrbl_runtime/src/module.rs +0 -0
  361. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/pkgs/core/tigrbl_runtime/src/py_atoms.rs +0 -0
  362. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/pkgs/core/tigrbl_runtime/src/py_engines.rs +0 -0
  363. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/pkgs/core/tigrbl_runtime/src/py_handlers.rs +0 -0
  364. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/pkgs/core/tigrbl_runtime/src/py_hooks.rs +0 -0
  365. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/pkgs/core/tigrbl_runtime/src/py_request.rs +0 -0
  366. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/pkgs/core/tigrbl_runtime/src/py_response.rs +0 -0
  367. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/pkgs/core/tigrbl_runtime/src/py_runtime.rs +0 -0
  368. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/pkgs/core/tigrbl_runtime/src/runtime_handle.rs +0 -0
  369. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/pkgs/core/tigrbl_runtime/src/spec_codec.rs +0 -0
  370. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/pkgs/core/tigrbl_runtime/tests/test_channel_runtime_surface.py +0 -0
  371. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/pkgs/core/tigrbl_runtime/tests/test_ctx_promote_compat.py +0 -0
  372. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/pkgs/core/tigrbl_runtime/tests/test_declared_dependency_imports.py +0 -0
  373. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/pkgs/core/tigrbl_runtime/tests/test_invoke_phase_db.py +0 -0
  374. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/pkgs/core/tigrbl_runtime/tests/test_kernel_bridge.py +0 -0
  375. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/pkgs/core/tigrbl_runtime/tests/test_phase_context_assignment.py +0 -0
  376. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/pkgs/core/tigrbl_runtime/tests/test_runtime_contracts.py +0 -0
  377. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/pkgs/core/tigrbl_runtime/tests/test_rust_codec.py +0 -0
  378. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/pkgs/core/tigrbl_runtime/tests/test_rust_runtime_demo_curl.py +0 -0
  379. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/pkgs/core/tigrbl_runtime/tests/test_rust_runtime_demo_docs_surface.py +0 -0
  380. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/pkgs/core/tigrbl_runtime/tests/test_smoke.py +0 -0
  381. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/pkgs/core/tigrbl_runtime/tests/test_typed_error_edges.py +0 -0
  382. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/__init__.py +0 -0
  383. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/callbacks.py +0 -0
  384. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/channel/__init__.py +0 -0
  385. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/channel/asgi.py +0 -0
  386. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/channel/capabilities.py +0 -0
  387. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/channel/state.py +0 -0
  388. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/channel/websocket.py +0 -0
  389. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/config/__init__.py +0 -0
  390. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/config/constants.py +0 -0
  391. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/executors/__init__.py +0 -0
  392. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/executors/base.py +0 -0
  393. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/executors/helpers.py +0 -0
  394. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/executors/kernel_executor.py +0 -0
  395. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/executors/loop_regions.py +0 -0
  396. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/executors/numba_packed.py +0 -0
  397. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/executors/phase.py +0 -0
  398. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/executors/types.py +0 -0
  399. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/handle.py +0 -0
  400. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/protocol/_iterators.py +0 -0
  401. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/protocol/http_stream.py +0 -0
  402. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/protocol/http_unary.py +0 -0
  403. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/protocol/lifespan_chain.py +0 -0
  404. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/protocol/sse.py +0 -0
  405. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/protocol/static_files.py +0 -0
  406. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/protocol/subevent_handlers.py +0 -0
  407. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/protocol/transport_atoms.py +0 -0
  408. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/protocol/websocket.py +0 -0
  409. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/protocol/webtransport.py +0 -0
  410. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/runtime/__init__.py +0 -0
  411. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/runtime/_typing_aliases.py +0 -0
  412. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/runtime/base.py +0 -0
  413. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/runtime/channel.py +0 -0
  414. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/runtime/events.py +0 -0
  415. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/runtime/exceptions.py +0 -0
  416. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/runtime/executor/__init__.py +0 -0
  417. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/runtime/executor/invoke.py +0 -0
  418. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/runtime/hook_types.py +0 -0
  419. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/runtime/kernel.py +0 -0
  420. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/runtime/labels.py +0 -0
  421. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/runtime/response.py +0 -0
  422. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/runtime/runtime.py +0 -0
  423. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/runtime/status/__init__.py +0 -0
  424. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/runtime/status/converters.py +0 -0
  425. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/runtime/status/exceptions.py +0 -0
  426. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/runtime/status/mappings.py +0 -0
  427. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/runtime/status/utils.py +0 -0
  428. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/runtime/system.py +0 -0
  429. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/rust/__init__.py +0 -0
  430. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/rust/_fallback.py +0 -0
  431. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/rust/_load_rust.py +0 -0
  432. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/rust/_parity_contract.py +0 -0
  433. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/rust/availability.py +0 -0
  434. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/rust/backend.py +0 -0
  435. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/rust/callbacks.py +0 -0
  436. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/rust/codec.py +0 -0
  437. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/rust/compile.py +0 -0
  438. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/rust/errors.py +0 -0
  439. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/rust/parity.py +0 -0
  440. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/rust/request.py +0 -0
  441. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/rust/response.py +0 -0
  442. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/rust/runtime.py +0 -0
  443. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/rust/trace.py +0 -0
  444. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/transactions.py +0 -0
  445. {tigrbl_runtime-0.4.0.dev2 → tigrbl_runtime-0.4.1.dev3}/tigrbl_runtime/webhooks.py +0 -0
@@ -28,9 +28,9 @@ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
28
28
 
29
29
  [[package]]
30
30
  name = "cc"
31
- version = "1.2.61"
31
+ version = "1.2.62"
32
32
  source = "registry+https://github.com/rust-lang/crates.io-index"
33
- checksum = "d16d90359e986641506914ba71350897565610e87ce0ad9e6f28569db3dd5c6d"
33
+ checksum = "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98"
34
34
  dependencies = [
35
35
  "find-msvc-tools",
36
36
  "shlex",
@@ -324,7 +324,7 @@ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
324
324
 
325
325
  [[package]]
326
326
  name = "tigrbl_rs_atoms"
327
- version = "0.4.0-dev.2"
327
+ version = "0.4.1-dev.3"
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.4.0-dev.2"
335
+ version = "0.4.1-dev.3"
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.4.0-dev.2"
343
+ version = "0.4.1-dev.3"
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.4.0-dev.2"
351
+ version = "0.4.1-dev.3"
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.4.0-dev.2"
361
+ version = "0.4.1-dev.3"
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.4.0-dev.2"
370
+ version = "0.4.1-dev.3"
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.4.0-dev.2"
377
+ version = "0.4.1-dev.3"
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.4.0-dev.2"
385
+ version = "0.4.1-dev.3"
386
386
  dependencies = [
387
387
  "tigrbl_rs_spec",
388
388
  ]
389
389
 
390
390
  [[package]]
391
391
  name = "tigrbl_rs_ports"
392
- version = "0.4.0-dev.2"
392
+ version = "0.4.1-dev.3"
393
393
  dependencies = [
394
394
  "tigrbl_rs_spec",
395
395
  ]
396
396
 
397
397
  [[package]]
398
398
  name = "tigrbl_rs_runtime"
399
- version = "0.4.0-dev.2"
399
+ version = "0.4.1-dev.3"
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.4.0-dev.2"
413
+ version = "0.4.1-dev.3"
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.4.0-dev.2"
421
+ version = "0.4.1-dev.3"
422
422
  dependencies = [
423
423
  "pyo3",
424
424
  "serde_json",
@@ -3,7 +3,7 @@ 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.4.0-dev.2"
6
+ version = "0.4.1-dev.3"
7
7
  edition = "2021"
8
8
  license = "Apache-2.0"
9
9
  authors = ["Jacob Stewart <jacob@swarmauri.com>"]
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -0,0 +1,165 @@
1
+ Metadata-Version: 2.4
2
+ Name: tigrbl-runtime
3
+ Version: 0.4.1.dev3
4
+ Classifier: Development Status :: 3 - Alpha
5
+ Classifier: Intended Audience :: Developers
6
+ Classifier: Intended Audience :: Information Technology
7
+ Classifier: Framework :: AsyncIO
8
+ Classifier: Operating System :: OS Independent
9
+ Classifier: Programming Language :: Python
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Programming Language :: Python :: 3 :: Only
12
+ Classifier: Programming Language :: Python :: 3.10
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Classifier: Programming Language :: Python :: 3.12
15
+ Classifier: Programming Language :: Python :: 3.13
16
+ Classifier: Programming Language :: Python :: 3.14
17
+ Classifier: Topic :: Internet :: WWW/HTTP
18
+ Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
19
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
20
+ Requires-Dist: tigrbl-typing
21
+ Requires-Dist: tigrbl-kernel
22
+ Requires-Dist: tigrbl-atoms
23
+ Requires-Dist: tigrbl-base
24
+ Requires-Dist: tigrbl-core
25
+ Requires-Dist: numba>=0.61.2
26
+ License-File: LICENSE
27
+ Summary: Runtime pipeline helpers and execution bridge surfaces for Tigrbl ASGI applications, transports, and operation dispatch.
28
+ Keywords: tigrbl,asgi,api,json-rpc,rest,sqlalchemy,pydantic,runtime,pipeline,bridge,openapi,openrpc,schema-first
29
+ Home-Page: https://github.com/tigrbl/tigrbl
30
+ Author-email: Jacob Stewart <jacob@swarmauri.com>
31
+ Requires-Python: >=3.10, <3.15
32
+ Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
33
+ Project-URL: Discord, https://discord.gg/K4YTAPapjR
34
+ Project-URL: Homepage, https://github.com/tigrbl/tigrbl
35
+ Project-URL: Issues, https://github.com/tigrbl/tigrbl/issues
36
+ Project-URL: Organization, https://github.com/tigrbl
37
+ Project-URL: Repository, https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_runtime
38
+
39
+ ![Tigrbl Logo](https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/master/assets/tigrbl_full_logo.png)
40
+
41
+ <p align="center">
42
+ <a href="https://pypi.org/project/tigrbl-runtime/">
43
+ <img src="https://img.shields.io/pypi/dm/tigrbl-runtime" alt="PyPI downloads for tigrbl-runtime"/></a>
44
+ <a href="https://hits.sh/github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_runtime/">
45
+ <img src="https://hits.sh/github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_runtime.svg" alt="Repository views for tigrbl-runtime"/></a>
46
+ <a href="https://pypi.org/project/tigrbl-runtime/">
47
+ <img src="https://img.shields.io/pypi/pyversions/tigrbl-runtime" alt="Supported Python versions for tigrbl-runtime"/></a>
48
+ <a href="https://pypi.org/project/tigrbl-runtime/">
49
+ <img src="https://img.shields.io/pypi/l/tigrbl-runtime" alt="PyPI license metadata for tigrbl-runtime"/></a>
50
+ <a href="https://pypi.org/project/tigrbl-runtime/">
51
+ <img src="https://img.shields.io/pypi/v/tigrbl-runtime?label=tigrbl-runtime&color=green" alt="PyPI version for tigrbl-runtime"/></a>
52
+ </p>
53
+
54
+ ---
55
+
56
+ <h1 align="center">Tigrbl runtime</h1>
57
+
58
+ **Execute a compiled operation: [inspect runtime executors and phase handling](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_runtime/tigrbl_runtime).**
59
+
60
+ tigrbl-runtime is a runtime pipeline package for runtime pipeline helpers and execution bridge surfaces for Tigrbl applications.
61
+
62
+ `tigrbl-runtime` is part of the Tigrbl package graph. It documents package-resident classes, concepts, extension points, and execution responsibilities while cross-linking to the facade, core specs, canonical mapping, runtime phases, concrete objects, operation packages, engine plugins, OpenAPI/OpenRPC documentation surfaces, and PyPI distributions that complete the system.
63
+
64
+ ## Resident concepts
65
+
66
+ - `tigrbl_runtime` owns phase lifecycle execution, runtime handles, kernel dispatch, request/response objects, callback registration, transaction execution, protocol atoms, channel state, webhook support, and Rust-runtime bridge surfaces.
67
+ - Document phase behavior here: binding match, binding parse, validation, authorization, pre-handler hooks, handler invocation, post-handler hooks, transaction commit/rollback, response encoding, and post-commit hooks.
68
+ - Use this package when you need to reason about how canonical operations become actual request execution across HTTP, JSON-RPC, SSE, WebSocket, WebTransport, and Rust fallback paths.
69
+
70
+ ## Package ecosystem cross-links
71
+
72
+ Every Tigrbl Python package links to its sibling distributions on PyPI so package indexes, search engines, answer engines, dependency scanners, and human readers can move through the installable package graph without falling back to source-tree paths.
73
+
74
+ Core packages:
75
+ - [`tigrbl`](https://pypi.org/project/tigrbl/) - Schema-first ASGI API framework for REST, JSON-RPC, OpenAPI, OpenRPC, SQLAlchemy models, typed validation, lifecycle hooks, and engine plugins.
76
+ - [`tigrbl-atoms`](https://pypi.org/project/tigrbl-atoms/) - Runtime atom utilities for Tigrbl planning, dispatch, transport ingress, egress, and high-throughput ASGI execution pipelines.
77
+ - [`tigrbl-base`](https://pypi.org/project/tigrbl-base/) - Abstract base interfaces for Tigrbl APIs, engines, providers, sessions, transports, and reusable runtime components.
78
+ - [`tigrbl-canon`](https://pypi.org/project/tigrbl-canon/) - Canonical mapping, routing, symbol resolution, and naming utilities for Tigrbl framework packages and generated API surfaces.
79
+ - [`tigrbl_client`](https://pypi.org/project/tigrbl_client/) - Typed Python client helpers for calling Tigrbl REST, JSON-RPC, OpenAPI, and generated schema-first API surfaces.
80
+ - [`tigrbl-concrete`](https://pypi.org/project/tigrbl-concrete/) - Concrete Tigrbl implementations for reusable framework behavior, sessions, routes, responses, and base abstraction adapters.
81
+ - [`tigrbl-core`](https://pypi.org/project/tigrbl-core/) - Core Tigrbl framework specifications, decorators, schemas, hooks, operations, and primitives for schema-first APIs.
82
+ - [`tigrbl-kernel`](https://pypi.org/project/tigrbl-kernel/) - Kernel orchestration for composing Tigrbl runtime plans, bindings, operation dispatch, and optimized ASGI execution.
83
+ - [`tigrbl-ops-olap`](https://pypi.org/project/tigrbl-ops-olap/) - Analytical OLAP operation boundaries for Tigrbl workloads, query-oriented APIs, and engine integrations.
84
+ - [`tigrbl-ops-oltp`](https://pypi.org/project/tigrbl-ops-oltp/) - Transactional OLTP operation handlers for Tigrbl CRUD, bulk, REST, JSON-RPC, and database-backed workloads.
85
+ - [`tigrbl-ops-realtime`](https://pypi.org/project/tigrbl-ops-realtime/) - Realtime, streaming, datagram, websocket, and event operation handlers for Tigrbl ASGI runtimes.
86
+ - [`tigrbl-orm`](https://pypi.org/project/tigrbl-orm/) - SQLAlchemy ORM tables, mixins, columns, model helpers, and persistence primitives for Tigrbl applications.
87
+ - [`tigrbl-runtime`](https://pypi.org/project/tigrbl-runtime/) (this package) - Runtime pipeline helpers and execution bridge surfaces for Tigrbl ASGI applications, transports, and operation dispatch.
88
+ - [`tigrbl_spec`](https://pypi.org/project/tigrbl_spec/) - Shared Tigrbl interfaces, protocol definitions, compatibility targets, and specification artifacts for framework integration.
89
+ - [`tigrbl_tests`](https://pypi.org/project/tigrbl_tests/) - Reusable Tigrbl pytest fixtures, conformance assertions, integration helpers, and package test utilities.
90
+ - [`tigrbl-typing`](https://pypi.org/project/tigrbl-typing/) - Typing protocols, aliases, generics, and shared type helpers for Tigrbl framework packages and extensions.
91
+
92
+ Engine packages:
93
+ - [`tigrbl_engine_bigquery`](https://pypi.org/project/tigrbl_engine_bigquery/) - BigQuery engine plugin for Google BigQuery warehouse sessions, analytics workloads, and Tigrbl engine registration.
94
+ - [`tigrbl_engine_clickhouse`](https://pypi.org/project/tigrbl_engine_clickhouse/) - ClickHouse engine plugin for analytical database sessions, warehouse workloads, and Tigrbl engine registration.
95
+ - [`tigrbl_engine_csv`](https://pypi.org/project/tigrbl_engine_csv/) - CSV engine plugin for file-backed tables, pandas DataFrames, and lightweight Tigrbl data workflows.
96
+ - [`tigrbl_engine_dataframe`](https://pypi.org/project/tigrbl_engine_dataframe/) - DataFrame engine plugin for transactional pandas sessions and in-process Tigrbl analytics workloads.
97
+ - [`tigrbl_engine_duckdb`](https://pypi.org/project/tigrbl_engine_duckdb/) - DuckDB engine plugin for embedded analytical database sessions, OLAP workloads, and Tigrbl engine registration.
98
+ - [`tigrbl_engine_inmemcache`](https://pypi.org/project/tigrbl_engine_inmemcache/) - In-memory cache engine plugin for process-local TTL, LRU, and fast Tigrbl cache workflows.
99
+ - [`tigrbl_engine_inmemory`](https://pypi.org/project/tigrbl_engine_inmemory/) - In-memory database engine plugin for process-local transactional storage, copy-on-write snapshots, and Tigrbl testing.
100
+ - [`tigrbl_engine_membloom`](https://pypi.org/project/tigrbl_engine_membloom/) - In-memory Bloom filter engine plugin for membership checks, rotating TTL windows, and Tigrbl API workflows.
101
+ - [`tigrbl_engine_memdedupe`](https://pypi.org/project/tigrbl_engine_memdedupe/) - In-memory dedupe engine plugin for idempotency tracking, duplicate suppression, and Tigrbl workflow coordination.
102
+ - [`tigrbl_engine_memkv`](https://pypi.org/project/tigrbl_engine_memkv/) - In-memory key-value engine plugin for process-local KV storage, cache workflows, and lightweight Tigrbl services.
103
+ - [`tigrbl_engine_memlru`](https://pypi.org/project/tigrbl_engine_memlru/) - In-memory LRU engine plugin for least-recently-used cache behavior and process-local Tigrbl data workflows.
104
+ - [`tigrbl_engine_mempubsub`](https://pypi.org/project/tigrbl_engine_mempubsub/) - In-memory pub/sub engine plugin for process-local publish-subscribe channels, events, and Tigrbl realtime workflows.
105
+ - [`tigrbl_engine_memqueue`](https://pypi.org/project/tigrbl_engine_memqueue/) - In-memory queue engine plugin for process-local tasks, message workflows, and Tigrbl runtime coordination.
106
+ - [`tigrbl_engine_memrate`](https://pypi.org/project/tigrbl_engine_memrate/) - In-memory rate-limit engine plugin for API quotas, counters, windows, and Tigrbl governance workflows.
107
+ - [`tigrbl_engine_numpy`](https://pypi.org/project/tigrbl_engine_numpy/) - NumPy engine plugin for array-to-table helpers, analytical workflows, and Tigrbl data integration.
108
+ - [`tigrbl_engine_pandas`](https://pypi.org/project/tigrbl_engine_pandas/) - Pandas engine plugin for transactional DataFrame sessions, tabular workflows, and Tigrbl data integration.
109
+ - [`tigrbl_engine_pgsqli_wal`](https://pypi.org/project/tigrbl_engine_pgsqli_wal/) - PostgreSQL and SQLite WAL engine plugin for transactional Tigrbl workflows and database-backed engine registration.
110
+ - [`tigrbl_engine_postgres`](https://pypi.org/project/tigrbl_engine_postgres/) - PostgreSQL engine plugin for SQLAlchemy sessions, async database workflows, and Tigrbl application persistence.
111
+ - [`tigrbl_engine_pyspark`](https://pypi.org/project/tigrbl_engine_pyspark/) - PySpark engine plugin for distributed DataFrame integration, analytics workloads, and Tigrbl data workflows.
112
+ - [`tigrbl_engine_redis`](https://pypi.org/project/tigrbl_engine_redis/) - Redis engine plugin for cache, data structures, and Tigrbl engine workflows backed by Redis.
113
+ - [`tigrbl_engine_rediscachethrough`](https://pypi.org/project/tigrbl_engine_rediscachethrough/) - Redis cache-through engine plugin for Redis, PostgreSQL, and Tigrbl data-access acceleration workflows.
114
+ - [`tigrbl_engine_snowflake`](https://pypi.org/project/tigrbl_engine_snowflake/) - Snowflake engine plugin for warehouse sessions, analytical workloads, and Tigrbl engine registration.
115
+ - [`tigrbl_engine_sqlite`](https://pypi.org/project/tigrbl_engine_sqlite/) - SQLite engine plugin for SQLAlchemy sessions, local transactional storage, and Tigrbl application persistence.
116
+ - [`tigrbl_engine_xlsx`](https://pypi.org/project/tigrbl_engine_xlsx/) - XLSX engine plugin for Excel workbook-backed tables, worksheet data access, and Tigrbl tabular workflows.
117
+
118
+ Application packages:
119
+ - [`tigrbl_acme_ca`](https://pypi.org/project/tigrbl_acme_ca/) - ACME v2 certificate authority app for Tigrbl tables, certificate automation, TLS workflows, and API surfaces.
120
+ - [`tigrbl_spiffe`](https://pypi.org/project/tigrbl_spiffe/) - SPIFFE and SPIRE identity app for Tigrbl with workload identity tables, UDS transport, and HTTP API surfaces.
121
+
122
+ Source-tree links remain available from each package identity section; this ecosystem section is intentionally PyPI-first for package discovery and installation routing.
123
+
124
+ ## Install
125
+
126
+ ```bash
127
+ pip install tigrbl-runtime
128
+ ```
129
+
130
+ ## Package discovery
131
+
132
+ `tigrbl-runtime` is described for package indexes, search engines, answer engines, and AI coding tools as: Runtime pipeline helpers and execution bridge surfaces for Tigrbl ASGI applications, transports, and operation dispatch.
133
+
134
+ Use `tigrbl-runtime` when you need Tigrbl's schema-first ASGI package graph for REST APIs, JSON-RPC APIs, OpenAPI documentation, OpenRPC documentation, SQLAlchemy-backed models, Pydantic validation, typed operation specs, runtime dispatch, and installable engine or application extensions.
135
+
136
+ Discovery terms: tigrbl, ASGI, schema-first API framework, REST API, JSON-RPC API, OpenAPI documentation, OpenRPC documentation, SQLAlchemy models, Pydantic validation, typed validation, operation dispatch, engine plugins, api, json-rpc, rest, sqlalchemy, pydantic, runtime, pipeline, bridge, openapi, openrpc, schema-first.
137
+
138
+ ## Package-local entry point
139
+
140
+ This file is a package-local distribution entry point.
141
+ It is not the authoritative location for repository governance, current target status, current state reporting, certification claims, or release evidence.
142
+
143
+ ## Canonical repository docs
144
+
145
+ - `README.md`
146
+ - `docs/README.md`
147
+ - `docs/conformance/CURRENT_TARGET.md`
148
+ - `docs/conformance/CURRENT_STATE.md`
149
+ - `docs/conformance/NEXT_STEPS.md`
150
+ - `docs/governance/DOC_POINTERS.md`
151
+ - `docs/developer/PACKAGE_CATALOG.md`
152
+ - `docs/developer/PACKAGE_LAYOUT.md`
153
+
154
+ ## Package identity
155
+
156
+ - canonical repository: `https://github.com/tigrbl/tigrbl`
157
+ - organization: `https://github.com/tigrbl`
158
+ - social: `https://discord.gg/K4YTAPapjR`
159
+ - package path: `https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_runtime`
160
+ - workspace path: `pkgs/core/tigrbl_runtime`
161
+ - workspace class: core Python package
162
+ - implementation layout: `src/`
163
+
164
+ Long-form repository documentation is governed from `docs/`.
165
+
@@ -0,0 +1,126 @@
1
+ ![Tigrbl Logo](https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/master/assets/tigrbl_full_logo.png)
2
+
3
+ <p align="center">
4
+ <a href="https://pypi.org/project/tigrbl-runtime/">
5
+ <img src="https://img.shields.io/pypi/dm/tigrbl-runtime" alt="PyPI downloads for tigrbl-runtime"/></a>
6
+ <a href="https://hits.sh/github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_runtime/">
7
+ <img src="https://hits.sh/github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_runtime.svg" alt="Repository views for tigrbl-runtime"/></a>
8
+ <a href="https://pypi.org/project/tigrbl-runtime/">
9
+ <img src="https://img.shields.io/pypi/pyversions/tigrbl-runtime" alt="Supported Python versions for tigrbl-runtime"/></a>
10
+ <a href="https://pypi.org/project/tigrbl-runtime/">
11
+ <img src="https://img.shields.io/pypi/l/tigrbl-runtime" alt="PyPI license metadata for tigrbl-runtime"/></a>
12
+ <a href="https://pypi.org/project/tigrbl-runtime/">
13
+ <img src="https://img.shields.io/pypi/v/tigrbl-runtime?label=tigrbl-runtime&color=green" alt="PyPI version for tigrbl-runtime"/></a>
14
+ </p>
15
+
16
+ ---
17
+
18
+ <h1 align="center">Tigrbl runtime</h1>
19
+
20
+ **Execute a compiled operation: [inspect runtime executors and phase handling](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_runtime/tigrbl_runtime).**
21
+
22
+ tigrbl-runtime is a runtime pipeline package for runtime pipeline helpers and execution bridge surfaces for Tigrbl applications.
23
+
24
+ `tigrbl-runtime` is part of the Tigrbl package graph. It documents package-resident classes, concepts, extension points, and execution responsibilities while cross-linking to the facade, core specs, canonical mapping, runtime phases, concrete objects, operation packages, engine plugins, OpenAPI/OpenRPC documentation surfaces, and PyPI distributions that complete the system.
25
+
26
+ ## Resident concepts
27
+
28
+ - `tigrbl_runtime` owns phase lifecycle execution, runtime handles, kernel dispatch, request/response objects, callback registration, transaction execution, protocol atoms, channel state, webhook support, and Rust-runtime bridge surfaces.
29
+ - Document phase behavior here: binding match, binding parse, validation, authorization, pre-handler hooks, handler invocation, post-handler hooks, transaction commit/rollback, response encoding, and post-commit hooks.
30
+ - Use this package when you need to reason about how canonical operations become actual request execution across HTTP, JSON-RPC, SSE, WebSocket, WebTransport, and Rust fallback paths.
31
+
32
+ ## Package ecosystem cross-links
33
+
34
+ Every Tigrbl Python package links to its sibling distributions on PyPI so package indexes, search engines, answer engines, dependency scanners, and human readers can move through the installable package graph without falling back to source-tree paths.
35
+
36
+ Core packages:
37
+ - [`tigrbl`](https://pypi.org/project/tigrbl/) - Schema-first ASGI API framework for REST, JSON-RPC, OpenAPI, OpenRPC, SQLAlchemy models, typed validation, lifecycle hooks, and engine plugins.
38
+ - [`tigrbl-atoms`](https://pypi.org/project/tigrbl-atoms/) - Runtime atom utilities for Tigrbl planning, dispatch, transport ingress, egress, and high-throughput ASGI execution pipelines.
39
+ - [`tigrbl-base`](https://pypi.org/project/tigrbl-base/) - Abstract base interfaces for Tigrbl APIs, engines, providers, sessions, transports, and reusable runtime components.
40
+ - [`tigrbl-canon`](https://pypi.org/project/tigrbl-canon/) - Canonical mapping, routing, symbol resolution, and naming utilities for Tigrbl framework packages and generated API surfaces.
41
+ - [`tigrbl_client`](https://pypi.org/project/tigrbl_client/) - Typed Python client helpers for calling Tigrbl REST, JSON-RPC, OpenAPI, and generated schema-first API surfaces.
42
+ - [`tigrbl-concrete`](https://pypi.org/project/tigrbl-concrete/) - Concrete Tigrbl implementations for reusable framework behavior, sessions, routes, responses, and base abstraction adapters.
43
+ - [`tigrbl-core`](https://pypi.org/project/tigrbl-core/) - Core Tigrbl framework specifications, decorators, schemas, hooks, operations, and primitives for schema-first APIs.
44
+ - [`tigrbl-kernel`](https://pypi.org/project/tigrbl-kernel/) - Kernel orchestration for composing Tigrbl runtime plans, bindings, operation dispatch, and optimized ASGI execution.
45
+ - [`tigrbl-ops-olap`](https://pypi.org/project/tigrbl-ops-olap/) - Analytical OLAP operation boundaries for Tigrbl workloads, query-oriented APIs, and engine integrations.
46
+ - [`tigrbl-ops-oltp`](https://pypi.org/project/tigrbl-ops-oltp/) - Transactional OLTP operation handlers for Tigrbl CRUD, bulk, REST, JSON-RPC, and database-backed workloads.
47
+ - [`tigrbl-ops-realtime`](https://pypi.org/project/tigrbl-ops-realtime/) - Realtime, streaming, datagram, websocket, and event operation handlers for Tigrbl ASGI runtimes.
48
+ - [`tigrbl-orm`](https://pypi.org/project/tigrbl-orm/) - SQLAlchemy ORM tables, mixins, columns, model helpers, and persistence primitives for Tigrbl applications.
49
+ - [`tigrbl-runtime`](https://pypi.org/project/tigrbl-runtime/) (this package) - Runtime pipeline helpers and execution bridge surfaces for Tigrbl ASGI applications, transports, and operation dispatch.
50
+ - [`tigrbl_spec`](https://pypi.org/project/tigrbl_spec/) - Shared Tigrbl interfaces, protocol definitions, compatibility targets, and specification artifacts for framework integration.
51
+ - [`tigrbl_tests`](https://pypi.org/project/tigrbl_tests/) - Reusable Tigrbl pytest fixtures, conformance assertions, integration helpers, and package test utilities.
52
+ - [`tigrbl-typing`](https://pypi.org/project/tigrbl-typing/) - Typing protocols, aliases, generics, and shared type helpers for Tigrbl framework packages and extensions.
53
+
54
+ Engine packages:
55
+ - [`tigrbl_engine_bigquery`](https://pypi.org/project/tigrbl_engine_bigquery/) - BigQuery engine plugin for Google BigQuery warehouse sessions, analytics workloads, and Tigrbl engine registration.
56
+ - [`tigrbl_engine_clickhouse`](https://pypi.org/project/tigrbl_engine_clickhouse/) - ClickHouse engine plugin for analytical database sessions, warehouse workloads, and Tigrbl engine registration.
57
+ - [`tigrbl_engine_csv`](https://pypi.org/project/tigrbl_engine_csv/) - CSV engine plugin for file-backed tables, pandas DataFrames, and lightweight Tigrbl data workflows.
58
+ - [`tigrbl_engine_dataframe`](https://pypi.org/project/tigrbl_engine_dataframe/) - DataFrame engine plugin for transactional pandas sessions and in-process Tigrbl analytics workloads.
59
+ - [`tigrbl_engine_duckdb`](https://pypi.org/project/tigrbl_engine_duckdb/) - DuckDB engine plugin for embedded analytical database sessions, OLAP workloads, and Tigrbl engine registration.
60
+ - [`tigrbl_engine_inmemcache`](https://pypi.org/project/tigrbl_engine_inmemcache/) - In-memory cache engine plugin for process-local TTL, LRU, and fast Tigrbl cache workflows.
61
+ - [`tigrbl_engine_inmemory`](https://pypi.org/project/tigrbl_engine_inmemory/) - In-memory database engine plugin for process-local transactional storage, copy-on-write snapshots, and Tigrbl testing.
62
+ - [`tigrbl_engine_membloom`](https://pypi.org/project/tigrbl_engine_membloom/) - In-memory Bloom filter engine plugin for membership checks, rotating TTL windows, and Tigrbl API workflows.
63
+ - [`tigrbl_engine_memdedupe`](https://pypi.org/project/tigrbl_engine_memdedupe/) - In-memory dedupe engine plugin for idempotency tracking, duplicate suppression, and Tigrbl workflow coordination.
64
+ - [`tigrbl_engine_memkv`](https://pypi.org/project/tigrbl_engine_memkv/) - In-memory key-value engine plugin for process-local KV storage, cache workflows, and lightweight Tigrbl services.
65
+ - [`tigrbl_engine_memlru`](https://pypi.org/project/tigrbl_engine_memlru/) - In-memory LRU engine plugin for least-recently-used cache behavior and process-local Tigrbl data workflows.
66
+ - [`tigrbl_engine_mempubsub`](https://pypi.org/project/tigrbl_engine_mempubsub/) - In-memory pub/sub engine plugin for process-local publish-subscribe channels, events, and Tigrbl realtime workflows.
67
+ - [`tigrbl_engine_memqueue`](https://pypi.org/project/tigrbl_engine_memqueue/) - In-memory queue engine plugin for process-local tasks, message workflows, and Tigrbl runtime coordination.
68
+ - [`tigrbl_engine_memrate`](https://pypi.org/project/tigrbl_engine_memrate/) - In-memory rate-limit engine plugin for API quotas, counters, windows, and Tigrbl governance workflows.
69
+ - [`tigrbl_engine_numpy`](https://pypi.org/project/tigrbl_engine_numpy/) - NumPy engine plugin for array-to-table helpers, analytical workflows, and Tigrbl data integration.
70
+ - [`tigrbl_engine_pandas`](https://pypi.org/project/tigrbl_engine_pandas/) - Pandas engine plugin for transactional DataFrame sessions, tabular workflows, and Tigrbl data integration.
71
+ - [`tigrbl_engine_pgsqli_wal`](https://pypi.org/project/tigrbl_engine_pgsqli_wal/) - PostgreSQL and SQLite WAL engine plugin for transactional Tigrbl workflows and database-backed engine registration.
72
+ - [`tigrbl_engine_postgres`](https://pypi.org/project/tigrbl_engine_postgres/) - PostgreSQL engine plugin for SQLAlchemy sessions, async database workflows, and Tigrbl application persistence.
73
+ - [`tigrbl_engine_pyspark`](https://pypi.org/project/tigrbl_engine_pyspark/) - PySpark engine plugin for distributed DataFrame integration, analytics workloads, and Tigrbl data workflows.
74
+ - [`tigrbl_engine_redis`](https://pypi.org/project/tigrbl_engine_redis/) - Redis engine plugin for cache, data structures, and Tigrbl engine workflows backed by Redis.
75
+ - [`tigrbl_engine_rediscachethrough`](https://pypi.org/project/tigrbl_engine_rediscachethrough/) - Redis cache-through engine plugin for Redis, PostgreSQL, and Tigrbl data-access acceleration workflows.
76
+ - [`tigrbl_engine_snowflake`](https://pypi.org/project/tigrbl_engine_snowflake/) - Snowflake engine plugin for warehouse sessions, analytical workloads, and Tigrbl engine registration.
77
+ - [`tigrbl_engine_sqlite`](https://pypi.org/project/tigrbl_engine_sqlite/) - SQLite engine plugin for SQLAlchemy sessions, local transactional storage, and Tigrbl application persistence.
78
+ - [`tigrbl_engine_xlsx`](https://pypi.org/project/tigrbl_engine_xlsx/) - XLSX engine plugin for Excel workbook-backed tables, worksheet data access, and Tigrbl tabular workflows.
79
+
80
+ Application packages:
81
+ - [`tigrbl_acme_ca`](https://pypi.org/project/tigrbl_acme_ca/) - ACME v2 certificate authority app for Tigrbl tables, certificate automation, TLS workflows, and API surfaces.
82
+ - [`tigrbl_spiffe`](https://pypi.org/project/tigrbl_spiffe/) - SPIFFE and SPIRE identity app for Tigrbl with workload identity tables, UDS transport, and HTTP API surfaces.
83
+
84
+ Source-tree links remain available from each package identity section; this ecosystem section is intentionally PyPI-first for package discovery and installation routing.
85
+
86
+ ## Install
87
+
88
+ ```bash
89
+ pip install tigrbl-runtime
90
+ ```
91
+
92
+ ## Package discovery
93
+
94
+ `tigrbl-runtime` is described for package indexes, search engines, answer engines, and AI coding tools as: Runtime pipeline helpers and execution bridge surfaces for Tigrbl ASGI applications, transports, and operation dispatch.
95
+
96
+ Use `tigrbl-runtime` when you need Tigrbl's schema-first ASGI package graph for REST APIs, JSON-RPC APIs, OpenAPI documentation, OpenRPC documentation, SQLAlchemy-backed models, Pydantic validation, typed operation specs, runtime dispatch, and installable engine or application extensions.
97
+
98
+ Discovery terms: tigrbl, ASGI, schema-first API framework, REST API, JSON-RPC API, OpenAPI documentation, OpenRPC documentation, SQLAlchemy models, Pydantic validation, typed validation, operation dispatch, engine plugins, api, json-rpc, rest, sqlalchemy, pydantic, runtime, pipeline, bridge, openapi, openrpc, schema-first.
99
+
100
+ ## Package-local entry point
101
+
102
+ This file is a package-local distribution entry point.
103
+ It is not the authoritative location for repository governance, current target status, current state reporting, certification claims, or release evidence.
104
+
105
+ ## Canonical repository docs
106
+
107
+ - `README.md`
108
+ - `docs/README.md`
109
+ - `docs/conformance/CURRENT_TARGET.md`
110
+ - `docs/conformance/CURRENT_STATE.md`
111
+ - `docs/conformance/NEXT_STEPS.md`
112
+ - `docs/governance/DOC_POINTERS.md`
113
+ - `docs/developer/PACKAGE_CATALOG.md`
114
+ - `docs/developer/PACKAGE_LAYOUT.md`
115
+
116
+ ## Package identity
117
+
118
+ - canonical repository: `https://github.com/tigrbl/tigrbl`
119
+ - organization: `https://github.com/tigrbl`
120
+ - social: `https://discord.gg/K4YTAPapjR`
121
+ - package path: `https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_runtime`
122
+ - workspace path: `pkgs/core/tigrbl_runtime`
123
+ - workspace class: core Python package
124
+ - implementation layout: `src/`
125
+
126
+ Long-form repository documentation is governed from `docs/`.
@@ -11,5 +11,5 @@ repository = "https://github.com/tigrbl/tigrbl"
11
11
  readme = "README.md"
12
12
 
13
13
  [dependencies]
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"}
14
+ tigrbl_rs_ports = { path = "../tigrbl_rs_ports", version = "0.4.1-dev.3"}
15
+ tigrbl_rs_spec = { path = "../tigrbl_rs_spec", version = "0.4.1-dev.3"}