tigrbl-runtime 0.1.0.dev15__tar.gz → 0.1.11.dev2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (409) hide show
  1. tigrbl_runtime-0.1.11.dev2/Cargo.lock +478 -0
  2. tigrbl_runtime-0.1.11.dev2/Cargo.toml +15 -0
  3. tigrbl_runtime-0.1.11.dev2/PKG-INFO +48 -0
  4. tigrbl_runtime-0.1.11.dev2/README.md +23 -0
  5. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/Cargo.toml +13 -0
  6. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/README.md +23 -0
  7. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/algebra.rs +6 -0
  8. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/atom.rs +6 -0
  9. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/context/base.rs +10 -0
  10. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/context/bound.rs +4 -0
  11. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/context/egress.rs +4 -0
  12. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/context/encoded.rs +4 -0
  13. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/context/error.rs +4 -0
  14. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/context/ingress.rs +4 -0
  15. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/context/mod.rs +12 -0
  16. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/context/phase_db.rs +4 -0
  17. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/context/planned.rs +4 -0
  18. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/context/resolved.rs +4 -0
  19. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/context/result.rs +4 -0
  20. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/dep/extra.rs +15 -0
  21. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/dep/mod.rs +3 -0
  22. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/dep/param_resolver.rs +15 -0
  23. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/dep/security.rs +15 -0
  24. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/dispatch/binding_match.rs +15 -0
  25. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/dispatch/binding_parse.rs +15 -0
  26. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/dispatch/input_normalize.rs +15 -0
  27. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/dispatch/mod.rs +4 -0
  28. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/dispatch/op_resolve.rs +15 -0
  29. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/egress/asgi_send.rs +15 -0
  30. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/egress/envelope_apply.rs +15 -0
  31. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/egress/headers_apply.rs +15 -0
  32. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/egress/http_finalize.rs +15 -0
  33. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/egress/mod.rs +7 -0
  34. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/egress/out_dump.rs +15 -0
  35. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/egress/result_normalize.rs +15 -0
  36. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/egress/to_transport_response.rs +15 -0
  37. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/emit/mod.rs +3 -0
  38. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/emit/paired_post.rs +15 -0
  39. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/emit/paired_pre.rs +15 -0
  40. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/emit/readtime_alias.rs +15 -0
  41. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/err/mod.rs +1 -0
  42. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/err/rollback.rs +15 -0
  43. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/events.rs +6 -0
  44. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/ingress/ctx_init.rs +15 -0
  45. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/ingress/input_prepare.rs +15 -0
  46. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/ingress/mod.rs +3 -0
  47. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/ingress/transport_extract.rs +15 -0
  48. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/labels.rs +5 -0
  49. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/lib.rs +28 -0
  50. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/macros.rs +6 -0
  51. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/out/masking.rs +15 -0
  52. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/out/mod.rs +1 -0
  53. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/phases.rs +59 -0
  54. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/python/atom_callback.rs +4 -0
  55. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/python/mod.rs +2 -0
  56. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/python/predicate_callback.rs +4 -0
  57. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/refresh/demand.rs +15 -0
  58. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/refresh/mod.rs +1 -0
  59. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/registry.rs +43 -0
  60. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/resolve/assemble.rs +15 -0
  61. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/resolve/mod.rs +2 -0
  62. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/resolve/paired_gen.rs +15 -0
  63. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/response/error_to_transport.rs +15 -0
  64. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/response/headers_from_payload.rs +15 -0
  65. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/response/mod.rs +8 -0
  66. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/response/negotiate.rs +15 -0
  67. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/response/negotiation.rs +15 -0
  68. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/response/render.rs +15 -0
  69. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/response/renderer.rs +15 -0
  70. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/response/template.rs +15 -0
  71. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/response/templates.rs +15 -0
  72. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/schema/collect_in.rs +15 -0
  73. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/schema/collect_out.rs +15 -0
  74. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/schema/mod.rs +2 -0
  75. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/stages.rs +8 -0
  76. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/storage/mod.rs +1 -0
  77. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/storage/to_stored.rs +15 -0
  78. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/sys/commit_tx.rs +15 -0
  79. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/sys/db.rs +15 -0
  80. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/sys/handler_aggregate.rs +15 -0
  81. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/sys/handler_append_chunk.rs +15 -0
  82. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/sys/handler_bulk_create.rs +15 -0
  83. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/sys/handler_bulk_delete.rs +15 -0
  84. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/sys/handler_bulk_merge.rs +15 -0
  85. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/sys/handler_bulk_replace.rs +15 -0
  86. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/sys/handler_bulk_update.rs +15 -0
  87. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/sys/handler_checkpoint.rs +15 -0
  88. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/sys/handler_clear.rs +15 -0
  89. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/sys/handler_count.rs +15 -0
  90. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/sys/handler_create.rs +15 -0
  91. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/sys/handler_custom.rs +15 -0
  92. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/sys/handler_delete.rs +15 -0
  93. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/sys/handler_download.rs +15 -0
  94. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/sys/handler_exists.rs +15 -0
  95. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/sys/handler_group_by.rs +15 -0
  96. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/sys/handler_list.rs +15 -0
  97. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/sys/handler_merge.rs +15 -0
  98. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/sys/handler_noop.rs +15 -0
  99. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/sys/handler_persistence.rs +15 -0
  100. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/sys/handler_publish.rs +15 -0
  101. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/sys/handler_read.rs +15 -0
  102. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/sys/handler_replace.rs +15 -0
  103. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/sys/handler_send_datagram.rs +15 -0
  104. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/sys/handler_subscribe.rs +15 -0
  105. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/sys/handler_tail.rs +15 -0
  106. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/sys/handler_update.rs +15 -0
  107. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/sys/handler_upload.rs +15 -0
  108. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/sys/mod.rs +34 -0
  109. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/sys/oltp_context.rs +15 -0
  110. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/sys/phase_db.rs +15 -0
  111. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/sys/rollback.rs +15 -0
  112. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/sys/start_tx.rs +15 -0
  113. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/wire/build_in.rs +15 -0
  114. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/wire/build_out.rs +15 -0
  115. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/wire/dump.rs +15 -0
  116. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/wire/mod.rs +4 -0
  117. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/src/wire/validate_in.rs +15 -0
  118. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_atoms/tests/atom_contract.rs +32 -0
  119. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_engine_inmemory/Cargo.toml +13 -0
  120. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_engine_inmemory/README.md +23 -0
  121. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_engine_inmemory/src/catalog.rs +2 -0
  122. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_engine_inmemory/src/column_store.rs +2 -0
  123. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_engine_inmemory/src/engine.rs +26 -0
  124. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_engine_inmemory/src/index.rs +2 -0
  125. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_engine_inmemory/src/lib.rs +10 -0
  126. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_engine_inmemory/src/lowerer.rs +2 -0
  127. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_engine_inmemory/src/row_store.rs +2 -0
  128. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_engine_inmemory/src/session.rs +22 -0
  129. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_engine_inmemory/src/snapshot.rs +2 -0
  130. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_engine_inmemory/src/table.rs +2 -0
  131. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_engine_inmemory/src/tx.rs +164 -0
  132. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_engine_inmemory/tests/inmemory_engine_contract.rs +13 -0
  133. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_engine_postgres/Cargo.toml +13 -0
  134. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_engine_postgres/README.md +23 -0
  135. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_engine_postgres/src/codec.rs +2 -0
  136. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_engine_postgres/src/ddl.rs +2 -0
  137. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_engine_postgres/src/engine.rs +16 -0
  138. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_engine_postgres/src/lib.rs +9 -0
  139. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_engine_postgres/src/lowerer.rs +2 -0
  140. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_engine_postgres/src/query.rs +2 -0
  141. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_engine_postgres/src/reflect.rs +2 -0
  142. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_engine_postgres/src/row.rs +2 -0
  143. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_engine_postgres/src/session.rs +12 -0
  144. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_engine_postgres/src/tx.rs +14 -0
  145. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_engine_postgres/tests/postgres_engine_contract.rs +13 -0
  146. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_engine_sqlite/Cargo.toml +15 -0
  147. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_engine_sqlite/README.md +23 -0
  148. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_engine_sqlite/src/codec.rs +2 -0
  149. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_engine_sqlite/src/ddl.rs +2 -0
  150. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_engine_sqlite/src/engine.rs +53 -0
  151. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_engine_sqlite/src/lib.rs +9 -0
  152. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_engine_sqlite/src/lowerer.rs +2 -0
  153. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_engine_sqlite/src/query.rs +2 -0
  154. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_engine_sqlite/src/reflect.rs +2 -0
  155. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_engine_sqlite/src/row.rs +2 -0
  156. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_engine_sqlite/src/session.rs +23 -0
  157. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_engine_sqlite/src/tx.rs +463 -0
  158. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_engine_sqlite/tests/sqlite_engine_contract.rs +153 -0
  159. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_kernel/Cargo.toml +14 -0
  160. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_kernel/README.md +23 -0
  161. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_kernel/src/builder.rs +6 -0
  162. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_kernel/src/cache.rs +4 -0
  163. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_kernel/src/compile.rs +123 -0
  164. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_kernel/src/explain.rs +4 -0
  165. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_kernel/src/inject/deps.rs +2 -0
  166. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_kernel/src/inject/mod.rs +3 -0
  167. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_kernel/src/inject/phase_db.rs +2 -0
  168. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_kernel/src/inject/sys_handlers.rs +2 -0
  169. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_kernel/src/labels.rs +3 -0
  170. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_kernel/src/lib.rs +18 -0
  171. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_kernel/src/opt/barriers.rs +5 -0
  172. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_kernel/src/opt/compaction.rs +5 -0
  173. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_kernel/src/opt/dead_steps.rs +5 -0
  174. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_kernel/src/opt/deforestation.rs +5 -0
  175. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_kernel/src/opt/fusion.rs +5 -0
  176. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_kernel/src/opt/hot_paths.rs +5 -0
  177. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_kernel/src/opt/mod.rs +7 -0
  178. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_kernel/src/opt/schedule.rs +5 -0
  179. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_kernel/src/opview/compiler.rs +2 -0
  180. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_kernel/src/opview/mod.rs +3 -0
  181. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_kernel/src/opview/schema_in.rs +2 -0
  182. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_kernel/src/opview/schema_out.rs +2 -0
  183. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_kernel/src/parity.rs +142 -0
  184. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_kernel/src/plan/hashing.rs +3 -0
  185. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_kernel/src/plan/hot.rs +4 -0
  186. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_kernel/src/plan/mod.rs +9 -0
  187. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_kernel/src/plan/models.rs +51 -0
  188. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_kernel/src/plan/packed.rs +18 -0
  189. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_kernel/src/plan/phase.rs +4 -0
  190. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_kernel/src/plan/segment.rs +5 -0
  191. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_kernel/src/route/mod.rs +3 -0
  192. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_kernel/src/route/rest.rs +2 -0
  193. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_kernel/src/route/rpc.rs +2 -0
  194. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_kernel/src/route/ws.rs +2 -0
  195. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_kernel/src/trace.rs +4 -0
  196. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_kernel/tests/kernel_contract.rs +43 -0
  197. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_kernel/tests/parity_contract.rs +80 -0
  198. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ops_oltp/Cargo.toml +13 -0
  199. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ops_oltp/README.md +23 -0
  200. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ops_oltp/src/bulk/create.rs +10 -0
  201. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ops_oltp/src/bulk/delete.rs +10 -0
  202. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ops_oltp/src/bulk/merge.rs +10 -0
  203. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ops_oltp/src/bulk/mod.rs +9 -0
  204. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ops_oltp/src/bulk/replace.rs +10 -0
  205. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ops_oltp/src/bulk/update.rs +10 -0
  206. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ops_oltp/src/handlers/custom.rs +4 -0
  207. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ops_oltp/src/handlers/mod.rs +2 -0
  208. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ops_oltp/src/handlers/registry.rs +4 -0
  209. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ops_oltp/src/lib.rs +9 -0
  210. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ops_oltp/src/model/defaults.rs +4 -0
  211. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ops_oltp/src/model/enums.rs +4 -0
  212. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ops_oltp/src/model/filters.rs +4 -0
  213. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ops_oltp/src/model/materialize.rs +4 -0
  214. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ops_oltp/src/model/mod.rs +6 -0
  215. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ops_oltp/src/model/normalize.rs +4 -0
  216. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ops_oltp/src/model/patch.rs +4 -0
  217. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ops_oltp/src/params.rs +9 -0
  218. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ops_oltp/src/python/handler_callback.rs +4 -0
  219. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ops_oltp/src/python/mod.rs +1 -0
  220. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ops_oltp/src/result/list.rs +7 -0
  221. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ops_oltp/src/result/mod.rs +3 -0
  222. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ops_oltp/src/result/mutate.rs +7 -0
  223. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ops_oltp/src/result/read.rs +6 -0
  224. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ops_oltp/src/verbs/clear.rs +14 -0
  225. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ops_oltp/src/verbs/count.rs +14 -0
  226. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ops_oltp/src/verbs/create.rs +14 -0
  227. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ops_oltp/src/verbs/delete.rs +14 -0
  228. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ops_oltp/src/verbs/exists.rs +14 -0
  229. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ops_oltp/src/verbs/list.rs +14 -0
  230. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ops_oltp/src/verbs/merge.rs +14 -0
  231. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ops_oltp/src/verbs/mod.rs +15 -0
  232. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ops_oltp/src/verbs/read.rs +14 -0
  233. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ops_oltp/src/verbs/replace.rs +14 -0
  234. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ops_oltp/src/verbs/update.rs +14 -0
  235. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ops_oltp/tests/ops_contract.rs +63 -0
  236. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ports/Cargo.toml +12 -0
  237. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ports/README.md +23 -0
  238. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ports/src/atoms.rs +3 -0
  239. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ports/src/callbacks.rs +18 -0
  240. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ports/src/channel.rs +38 -0
  241. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ports/src/engines.rs +6 -0
  242. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ports/src/errors.rs +24 -0
  243. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ports/src/handlers.rs +7 -0
  244. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ports/src/lib.rs +17 -0
  245. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ports/src/sessions.rs +8 -0
  246. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ports/src/transactions.rs +18 -0
  247. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ports/src/values.rs +1 -0
  248. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_ports/tests/ports_contract.rs +18 -0
  249. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_runtime/Cargo.toml +19 -0
  250. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_runtime/README.md +23 -0
  251. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_runtime/src/callback/fence.rs +4 -0
  252. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_runtime/src/callback/mod.rs +4 -0
  253. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_runtime/src/callback/python.rs +4 -0
  254. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_runtime/src/callback/registry.rs +8 -0
  255. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_runtime/src/callback/rust.rs +4 -0
  256. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_runtime/src/channel/adapter.rs +100 -0
  257. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_runtime/src/channel/mod.rs +5 -0
  258. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_runtime/src/config.rs +6 -0
  259. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_runtime/src/engine/mod.rs +2 -0
  260. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_runtime/src/engine/registry.rs +62 -0
  261. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_runtime/src/engine/resolver.rs +18 -0
  262. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_runtime/src/executor/fused.rs +2 -0
  263. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_runtime/src/executor/invoke.rs +2 -0
  264. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_runtime/src/executor/mod.rs +5 -0
  265. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_runtime/src/executor/packed.rs +2 -0
  266. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_runtime/src/executor/phase.rs +2 -0
  267. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_runtime/src/executor/rollback.rs +2 -0
  268. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_runtime/src/handle/mod.rs +2 -0
  269. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_runtime/src/handle/plan_handle.rs +4 -0
  270. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_runtime/src/handle/runtime_handle.rs +163 -0
  271. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_runtime/src/lib.rs +18 -0
  272. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_runtime/src/metrics.rs +5 -0
  273. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_runtime/src/parity.rs +66 -0
  274. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_runtime/src/request.rs +1 -0
  275. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_runtime/src/response.rs +1 -0
  276. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_runtime/src/runtime.rs +17 -0
  277. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_runtime/src/status.rs +7 -0
  278. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_runtime/src/trace.rs +4 -0
  279. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_runtime/tests/channel_contract.rs +44 -0
  280. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_runtime/tests/parity_contract.rs +18 -0
  281. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_runtime/tests/runtime_contract.rs +361 -0
  282. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_spec/Cargo.toml +13 -0
  283. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_spec/README.md +23 -0
  284. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_spec/src/app.rs +40 -0
  285. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_spec/src/binding.rs +13 -0
  286. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_spec/src/callback.rs +10 -0
  287. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_spec/src/column.rs +11 -0
  288. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_spec/src/datatypes/adapter.rs +37 -0
  289. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_spec/src/datatypes/bridge.rs +36 -0
  290. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_spec/src/datatypes/builtin/array.rs +5 -0
  291. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_spec/src/datatypes/builtin/boolean.rs +5 -0
  292. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_spec/src/datatypes/builtin/bytes.rs +5 -0
  293. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_spec/src/datatypes/builtin/date.rs +5 -0
  294. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_spec/src/datatypes/builtin/datetime.rs +5 -0
  295. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_spec/src/datatypes/builtin/decimal.rs +5 -0
  296. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_spec/src/datatypes/builtin/duration.rs +5 -0
  297. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_spec/src/datatypes/builtin/enum_.rs +5 -0
  298. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_spec/src/datatypes/builtin/integer.rs +5 -0
  299. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_spec/src/datatypes/builtin/json.rs +5 -0
  300. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_spec/src/datatypes/builtin/mod.rs +16 -0
  301. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_spec/src/datatypes/builtin/number.rs +5 -0
  302. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_spec/src/datatypes/builtin/object.rs +5 -0
  303. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_spec/src/datatypes/builtin/string.rs +5 -0
  304. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_spec/src/datatypes/builtin/time.rs +5 -0
  305. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_spec/src/datatypes/builtin/ulid.rs +5 -0
  306. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_spec/src/datatypes/builtin/uuid.rs +5 -0
  307. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_spec/src/datatypes/datatype_spec.rs +20 -0
  308. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_spec/src/datatypes/engine_registry.rs +227 -0
  309. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_spec/src/datatypes/lowerer.rs +6 -0
  310. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_spec/src/datatypes/mod.rs +17 -0
  311. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_spec/src/datatypes/reflected.rs +102 -0
  312. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_spec/src/datatypes/registry.rs +34 -0
  313. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_spec/src/datatypes/storage_type_ref.rs +14 -0
  314. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_spec/src/engine.rs +12 -0
  315. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_spec/src/errors.rs +16 -0
  316. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_spec/src/field.rs +11 -0
  317. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_spec/src/hook.rs +49 -0
  318. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_spec/src/lib.rs +33 -0
  319. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_spec/src/op.rs +124 -0
  320. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_spec/src/request.rs +15 -0
  321. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_spec/src/response.rs +10 -0
  322. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_spec/src/serde/json.rs +754 -0
  323. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_spec/src/serde/mod.rs +2 -0
  324. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_spec/src/serde/versioned.rs +5 -0
  325. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_spec/src/storage.rs +11 -0
  326. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_spec/src/table.rs +7 -0
  327. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_spec/src/values.rs +14 -0
  328. tigrbl_runtime-0.1.11.dev2/crates/tigrbl_rs_spec/tests/spec_contract.rs +121 -0
  329. tigrbl_runtime-0.1.11.dev2/pkgs/core/tigrbl_runtime/Cargo.toml +20 -0
  330. tigrbl_runtime-0.1.11.dev2/pkgs/core/tigrbl_runtime/README.md +23 -0
  331. tigrbl_runtime-0.1.11.dev2/pkgs/core/tigrbl_runtime/src/callback_registry.rs +54 -0
  332. tigrbl_runtime-0.1.11.dev2/pkgs/core/tigrbl_runtime/src/errors.rs +1 -0
  333. tigrbl_runtime-0.1.11.dev2/pkgs/core/tigrbl_runtime/src/lib.rs +57 -0
  334. tigrbl_runtime-0.1.11.dev2/pkgs/core/tigrbl_runtime/src/module.rs +86 -0
  335. tigrbl_runtime-0.1.11.dev2/pkgs/core/tigrbl_runtime/src/py_atoms.rs +9 -0
  336. tigrbl_runtime-0.1.11.dev2/pkgs/core/tigrbl_runtime/src/py_engines.rs +9 -0
  337. tigrbl_runtime-0.1.11.dev2/pkgs/core/tigrbl_runtime/src/py_handlers.rs +9 -0
  338. tigrbl_runtime-0.1.11.dev2/pkgs/core/tigrbl_runtime/src/py_hooks.rs +9 -0
  339. tigrbl_runtime-0.1.11.dev2/pkgs/core/tigrbl_runtime/src/py_request.rs +1 -0
  340. tigrbl_runtime-0.1.11.dev2/pkgs/core/tigrbl_runtime/src/py_response.rs +1 -0
  341. tigrbl_runtime-0.1.11.dev2/pkgs/core/tigrbl_runtime/src/py_runtime.rs +1 -0
  342. tigrbl_runtime-0.1.11.dev2/pkgs/core/tigrbl_runtime/src/runtime_handle.rs +477 -0
  343. tigrbl_runtime-0.1.11.dev2/pkgs/core/tigrbl_runtime/src/spec_codec.rs +15 -0
  344. tigrbl_runtime-0.1.11.dev2/pkgs/core/tigrbl_runtime/tests/test_channel_runtime_surface.py +105 -0
  345. tigrbl_runtime-0.1.11.dev2/pkgs/core/tigrbl_runtime/tests/test_ctx_promote_compat.py +34 -0
  346. tigrbl_runtime-0.1.11.dev2/pkgs/core/tigrbl_runtime/tests/test_declared_dependency_imports.py +54 -0
  347. tigrbl_runtime-0.1.11.dev2/pkgs/core/tigrbl_runtime/tests/test_invoke_phase_db.py +128 -0
  348. tigrbl_runtime-0.1.11.dev2/pkgs/core/tigrbl_runtime/tests/test_kernel_bridge.py +13 -0
  349. tigrbl_runtime-0.1.11.dev2/pkgs/core/tigrbl_runtime/tests/test_phase_context_assignment.py +48 -0
  350. tigrbl_runtime-0.1.11.dev2/pkgs/core/tigrbl_runtime/tests/test_runtime_contracts.py +28 -0
  351. tigrbl_runtime-0.1.11.dev2/pkgs/core/tigrbl_runtime/tests/test_rust_codec.py +27 -0
  352. tigrbl_runtime-0.1.11.dev2/pkgs/core/tigrbl_runtime/tests/test_rust_runtime_demo_curl.py +163 -0
  353. tigrbl_runtime-0.1.11.dev2/pkgs/core/tigrbl_runtime/tests/test_rust_runtime_demo_docs_surface.py +152 -0
  354. tigrbl_runtime-0.1.11.dev2/pkgs/core/tigrbl_runtime/tests/test_smoke.py +5 -0
  355. {tigrbl_runtime-0.1.0.dev15 → tigrbl_runtime-0.1.11.dev2}/pyproject.toml +15 -13
  356. tigrbl_runtime-0.1.11.dev2/tigrbl_runtime/__init__.py +52 -0
  357. tigrbl_runtime-0.1.11.dev2/tigrbl_runtime/channel/__init__.py +20 -0
  358. tigrbl_runtime-0.1.11.dev2/tigrbl_runtime/channel/asgi.py +303 -0
  359. tigrbl_runtime-0.1.11.dev2/tigrbl_runtime/channel/websocket.py +95 -0
  360. {tigrbl_runtime-0.1.0.dev15 → tigrbl_runtime-0.1.11.dev2}/tigrbl_runtime/executors/packed.py +175 -61
  361. {tigrbl_runtime-0.1.0.dev15 → tigrbl_runtime-0.1.11.dev2}/tigrbl_runtime/executors/types.py +44 -12
  362. tigrbl_runtime-0.1.11.dev2/tigrbl_runtime/handle.py +11 -0
  363. {tigrbl_runtime-0.1.0.dev15 → tigrbl_runtime-0.1.11.dev2}/tigrbl_runtime/runtime/__init__.py +2 -0
  364. tigrbl_runtime-0.1.11.dev2/tigrbl_runtime/runtime/channel.py +6 -0
  365. {tigrbl_runtime-0.1.0.dev15 → tigrbl_runtime-0.1.11.dev2}/tigrbl_runtime/runtime/executor/invoke.py +4 -0
  366. tigrbl_runtime-0.1.11.dev2/tigrbl_runtime/runtime/runtime.py +218 -0
  367. tigrbl_runtime-0.1.11.dev2/tigrbl_runtime/rust/__init__.py +74 -0
  368. tigrbl_runtime-0.1.11.dev2/tigrbl_runtime/rust/_fallback.py +346 -0
  369. tigrbl_runtime-0.1.11.dev2/tigrbl_runtime/rust/_load_rust.py +28 -0
  370. tigrbl_runtime-0.1.11.dev2/tigrbl_runtime/rust/_parity_contract.py +166 -0
  371. tigrbl_runtime-0.1.11.dev2/tigrbl_runtime/rust/availability.py +5 -0
  372. tigrbl_runtime-0.1.11.dev2/tigrbl_runtime/rust/backend.py +38 -0
  373. tigrbl_runtime-0.1.11.dev2/tigrbl_runtime/rust/callbacks.py +54 -0
  374. tigrbl_runtime-0.1.11.dev2/tigrbl_runtime/rust/codec.py +373 -0
  375. tigrbl_runtime-0.1.11.dev2/tigrbl_runtime/rust/compile.py +35 -0
  376. tigrbl_runtime-0.1.11.dev2/tigrbl_runtime/rust/errors.py +2 -0
  377. tigrbl_runtime-0.1.11.dev2/tigrbl_runtime/rust/parity.py +71 -0
  378. tigrbl_runtime-0.1.11.dev2/tigrbl_runtime/rust/request.py +19 -0
  379. tigrbl_runtime-0.1.11.dev2/tigrbl_runtime/rust/response.py +14 -0
  380. tigrbl_runtime-0.1.11.dev2/tigrbl_runtime/rust/runtime.py +161 -0
  381. tigrbl_runtime-0.1.11.dev2/tigrbl_runtime/rust/trace.py +55 -0
  382. tigrbl_runtime-0.1.0.dev15/PKG-INFO +0 -54
  383. tigrbl_runtime-0.1.0.dev15/README.md +0 -29
  384. tigrbl_runtime-0.1.0.dev15/tigrbl_runtime/runtime/README.md +0 -177
  385. tigrbl_runtime-0.1.0.dev15/tigrbl_runtime/runtime/runtime.py +0 -75
  386. {tigrbl_runtime-0.1.0.dev15 → tigrbl_runtime-0.1.11.dev2}/tigrbl_runtime/config/__init__.py +0 -0
  387. {tigrbl_runtime-0.1.0.dev15 → tigrbl_runtime-0.1.11.dev2}/tigrbl_runtime/config/constants.py +0 -0
  388. {tigrbl_runtime-0.1.0.dev15 → tigrbl_runtime-0.1.11.dev2}/tigrbl_runtime/executors/__init__.py +0 -0
  389. {tigrbl_runtime-0.1.0.dev15 → tigrbl_runtime-0.1.11.dev2}/tigrbl_runtime/executors/base.py +0 -0
  390. {tigrbl_runtime-0.1.0.dev15 → tigrbl_runtime-0.1.11.dev2}/tigrbl_runtime/executors/helpers.py +0 -0
  391. {tigrbl_runtime-0.1.0.dev15 → tigrbl_runtime-0.1.11.dev2}/tigrbl_runtime/executors/invoke.py +0 -0
  392. {tigrbl_runtime-0.1.0.dev15 → tigrbl_runtime-0.1.11.dev2}/tigrbl_runtime/executors/kernel_executor.py +0 -0
  393. {tigrbl_runtime-0.1.0.dev15 → tigrbl_runtime-0.1.11.dev2}/tigrbl_runtime/executors/numba_packed.py +0 -0
  394. {tigrbl_runtime-0.1.0.dev15 → tigrbl_runtime-0.1.11.dev2}/tigrbl_runtime/executors/phase.py +0 -0
  395. {tigrbl_runtime-0.1.0.dev15 → tigrbl_runtime-0.1.11.dev2}/tigrbl_runtime/runtime/_typing_aliases.py +0 -0
  396. {tigrbl_runtime-0.1.0.dev15 → tigrbl_runtime-0.1.11.dev2}/tigrbl_runtime/runtime/base.py +0 -0
  397. {tigrbl_runtime-0.1.0.dev15 → tigrbl_runtime-0.1.11.dev2}/tigrbl_runtime/runtime/events.py +0 -0
  398. {tigrbl_runtime-0.1.0.dev15 → tigrbl_runtime-0.1.11.dev2}/tigrbl_runtime/runtime/exceptions.py +0 -0
  399. {tigrbl_runtime-0.1.0.dev15 → tigrbl_runtime-0.1.11.dev2}/tigrbl_runtime/runtime/executor/__init__.py +0 -0
  400. {tigrbl_runtime-0.1.0.dev15 → tigrbl_runtime-0.1.11.dev2}/tigrbl_runtime/runtime/hook_types.py +0 -0
  401. {tigrbl_runtime-0.1.0.dev15 → tigrbl_runtime-0.1.11.dev2}/tigrbl_runtime/runtime/kernel.py +0 -0
  402. {tigrbl_runtime-0.1.0.dev15 → tigrbl_runtime-0.1.11.dev2}/tigrbl_runtime/runtime/labels.py +0 -0
  403. {tigrbl_runtime-0.1.0.dev15 → tigrbl_runtime-0.1.11.dev2}/tigrbl_runtime/runtime/response.py +0 -0
  404. {tigrbl_runtime-0.1.0.dev15 → tigrbl_runtime-0.1.11.dev2}/tigrbl_runtime/runtime/status/__init__.py +0 -0
  405. {tigrbl_runtime-0.1.0.dev15 → tigrbl_runtime-0.1.11.dev2}/tigrbl_runtime/runtime/status/converters.py +0 -0
  406. {tigrbl_runtime-0.1.0.dev15 → tigrbl_runtime-0.1.11.dev2}/tigrbl_runtime/runtime/status/exceptions.py +0 -0
  407. {tigrbl_runtime-0.1.0.dev15 → tigrbl_runtime-0.1.11.dev2}/tigrbl_runtime/runtime/status/mappings.py +0 -0
  408. {tigrbl_runtime-0.1.0.dev15 → tigrbl_runtime-0.1.11.dev2}/tigrbl_runtime/runtime/status/utils.py +0 -0
  409. {tigrbl_runtime-0.1.0.dev15 → tigrbl_runtime-0.1.11.dev2}/tigrbl_runtime/runtime/system.py +0 -0
@@ -0,0 +1,478 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 3
4
+
5
+ [[package]]
6
+ name = "ahash"
7
+ version = "0.8.12"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
10
+ dependencies = [
11
+ "cfg-if",
12
+ "once_cell",
13
+ "version_check",
14
+ "zerocopy",
15
+ ]
16
+
17
+ [[package]]
18
+ name = "autocfg"
19
+ version = "1.5.0"
20
+ source = "registry+https://github.com/rust-lang/crates.io-index"
21
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
22
+
23
+ [[package]]
24
+ name = "bitflags"
25
+ version = "2.11.1"
26
+ source = "registry+https://github.com/rust-lang/crates.io-index"
27
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
28
+
29
+ [[package]]
30
+ name = "cc"
31
+ version = "1.2.61"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "d16d90359e986641506914ba71350897565610e87ce0ad9e6f28569db3dd5c6d"
34
+ dependencies = [
35
+ "find-msvc-tools",
36
+ "shlex",
37
+ ]
38
+
39
+ [[package]]
40
+ name = "cfg-if"
41
+ version = "1.0.4"
42
+ source = "registry+https://github.com/rust-lang/crates.io-index"
43
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
44
+
45
+ [[package]]
46
+ name = "fallible-iterator"
47
+ version = "0.3.0"
48
+ source = "registry+https://github.com/rust-lang/crates.io-index"
49
+ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
50
+
51
+ [[package]]
52
+ name = "fallible-streaming-iterator"
53
+ version = "0.1.9"
54
+ source = "registry+https://github.com/rust-lang/crates.io-index"
55
+ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
56
+
57
+ [[package]]
58
+ name = "find-msvc-tools"
59
+ version = "0.1.9"
60
+ source = "registry+https://github.com/rust-lang/crates.io-index"
61
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
62
+
63
+ [[package]]
64
+ name = "hashbrown"
65
+ version = "0.14.5"
66
+ source = "registry+https://github.com/rust-lang/crates.io-index"
67
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
68
+ dependencies = [
69
+ "ahash",
70
+ ]
71
+
72
+ [[package]]
73
+ name = "hashlink"
74
+ version = "0.9.1"
75
+ source = "registry+https://github.com/rust-lang/crates.io-index"
76
+ checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af"
77
+ dependencies = [
78
+ "hashbrown",
79
+ ]
80
+
81
+ [[package]]
82
+ name = "heck"
83
+ version = "0.5.0"
84
+ source = "registry+https://github.com/rust-lang/crates.io-index"
85
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
86
+
87
+ [[package]]
88
+ name = "indoc"
89
+ version = "2.0.7"
90
+ source = "registry+https://github.com/rust-lang/crates.io-index"
91
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
92
+ dependencies = [
93
+ "rustversion",
94
+ ]
95
+
96
+ [[package]]
97
+ name = "itoa"
98
+ version = "1.0.18"
99
+ source = "registry+https://github.com/rust-lang/crates.io-index"
100
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
101
+
102
+ [[package]]
103
+ name = "libc"
104
+ version = "0.2.186"
105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
106
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
107
+
108
+ [[package]]
109
+ name = "libsqlite3-sys"
110
+ version = "0.30.1"
111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
112
+ checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149"
113
+ dependencies = [
114
+ "cc",
115
+ "pkg-config",
116
+ "vcpkg",
117
+ ]
118
+
119
+ [[package]]
120
+ name = "memchr"
121
+ version = "2.8.0"
122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
123
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
124
+
125
+ [[package]]
126
+ name = "memoffset"
127
+ version = "0.9.1"
128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
129
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
130
+ dependencies = [
131
+ "autocfg",
132
+ ]
133
+
134
+ [[package]]
135
+ name = "once_cell"
136
+ version = "1.21.4"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
139
+
140
+ [[package]]
141
+ name = "pkg-config"
142
+ version = "0.3.33"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
145
+
146
+ [[package]]
147
+ name = "portable-atomic"
148
+ version = "1.13.1"
149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
150
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
151
+
152
+ [[package]]
153
+ name = "proc-macro2"
154
+ version = "1.0.106"
155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
156
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
157
+ dependencies = [
158
+ "unicode-ident",
159
+ ]
160
+
161
+ [[package]]
162
+ name = "pyo3"
163
+ version = "0.22.6"
164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
165
+ checksum = "f402062616ab18202ae8319da13fa4279883a2b8a9d9f83f20dbade813ce1884"
166
+ dependencies = [
167
+ "cfg-if",
168
+ "indoc",
169
+ "libc",
170
+ "memoffset",
171
+ "once_cell",
172
+ "portable-atomic",
173
+ "pyo3-build-config",
174
+ "pyo3-ffi",
175
+ "pyo3-macros",
176
+ "unindent",
177
+ ]
178
+
179
+ [[package]]
180
+ name = "pyo3-build-config"
181
+ version = "0.22.6"
182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
183
+ checksum = "b14b5775b5ff446dd1056212d778012cbe8a0fbffd368029fd9e25b514479c38"
184
+ dependencies = [
185
+ "once_cell",
186
+ "target-lexicon",
187
+ ]
188
+
189
+ [[package]]
190
+ name = "pyo3-ffi"
191
+ version = "0.22.6"
192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
193
+ checksum = "9ab5bcf04a2cdcbb50c7d6105de943f543f9ed92af55818fd17b660390fc8636"
194
+ dependencies = [
195
+ "libc",
196
+ "pyo3-build-config",
197
+ ]
198
+
199
+ [[package]]
200
+ name = "pyo3-macros"
201
+ version = "0.22.6"
202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
203
+ checksum = "0fd24d897903a9e6d80b968368a34e1525aeb719d568dba8b3d4bfa5dc67d453"
204
+ dependencies = [
205
+ "proc-macro2",
206
+ "pyo3-macros-backend",
207
+ "quote",
208
+ "syn",
209
+ ]
210
+
211
+ [[package]]
212
+ name = "pyo3-macros-backend"
213
+ version = "0.22.6"
214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
215
+ checksum = "36c011a03ba1e50152b4b394b479826cad97e7a21eb52df179cd91ac411cbfbe"
216
+ dependencies = [
217
+ "heck",
218
+ "proc-macro2",
219
+ "pyo3-build-config",
220
+ "quote",
221
+ "syn",
222
+ ]
223
+
224
+ [[package]]
225
+ name = "quote"
226
+ version = "1.0.45"
227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
228
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
229
+ dependencies = [
230
+ "proc-macro2",
231
+ ]
232
+
233
+ [[package]]
234
+ name = "rusqlite"
235
+ version = "0.32.1"
236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
237
+ checksum = "7753b721174eb8ff87a9a0e799e2d7bc3749323e773db92e0984debb00019d6e"
238
+ dependencies = [
239
+ "bitflags",
240
+ "fallible-iterator",
241
+ "fallible-streaming-iterator",
242
+ "hashlink",
243
+ "libsqlite3-sys",
244
+ "smallvec",
245
+ ]
246
+
247
+ [[package]]
248
+ name = "rustversion"
249
+ version = "1.0.22"
250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
251
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
252
+
253
+ [[package]]
254
+ name = "serde"
255
+ version = "1.0.228"
256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
257
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
258
+ dependencies = [
259
+ "serde_core",
260
+ "serde_derive",
261
+ ]
262
+
263
+ [[package]]
264
+ name = "serde_core"
265
+ version = "1.0.228"
266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
267
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
268
+ dependencies = [
269
+ "serde_derive",
270
+ ]
271
+
272
+ [[package]]
273
+ name = "serde_derive"
274
+ version = "1.0.228"
275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
276
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
277
+ dependencies = [
278
+ "proc-macro2",
279
+ "quote",
280
+ "syn",
281
+ ]
282
+
283
+ [[package]]
284
+ name = "serde_json"
285
+ version = "1.0.149"
286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
287
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
288
+ dependencies = [
289
+ "itoa",
290
+ "memchr",
291
+ "serde",
292
+ "serde_core",
293
+ "zmij",
294
+ ]
295
+
296
+ [[package]]
297
+ name = "shlex"
298
+ version = "1.3.0"
299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
300
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
301
+
302
+ [[package]]
303
+ name = "smallvec"
304
+ version = "1.15.1"
305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
306
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
307
+
308
+ [[package]]
309
+ name = "syn"
310
+ version = "2.0.117"
311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
313
+ dependencies = [
314
+ "proc-macro2",
315
+ "quote",
316
+ "unicode-ident",
317
+ ]
318
+
319
+ [[package]]
320
+ name = "target-lexicon"
321
+ version = "0.12.16"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
324
+
325
+ [[package]]
326
+ name = "tigrbl_rs_atoms"
327
+ version = "0.1.11-dev.2"
328
+ dependencies = [
329
+ "tigrbl_rs_ports",
330
+ "tigrbl_rs_spec",
331
+ ]
332
+
333
+ [[package]]
334
+ name = "tigrbl_rs_engine_inmemory"
335
+ version = "0.1.11-dev.2"
336
+ dependencies = [
337
+ "tigrbl_rs_ports",
338
+ "tigrbl_rs_spec",
339
+ ]
340
+
341
+ [[package]]
342
+ name = "tigrbl_rs_engine_postgres"
343
+ version = "0.1.11-dev.2"
344
+ dependencies = [
345
+ "tigrbl_rs_ports",
346
+ "tigrbl_rs_spec",
347
+ ]
348
+
349
+ [[package]]
350
+ name = "tigrbl_rs_engine_sqlite"
351
+ version = "0.1.11-dev.2"
352
+ dependencies = [
353
+ "rusqlite",
354
+ "serde_json",
355
+ "tigrbl_rs_ports",
356
+ "tigrbl_rs_spec",
357
+ ]
358
+
359
+ [[package]]
360
+ name = "tigrbl_rs_kernel"
361
+ version = "0.1.11-dev.2"
362
+ dependencies = [
363
+ "tigrbl_rs_atoms",
364
+ "tigrbl_rs_ports",
365
+ "tigrbl_rs_spec",
366
+ ]
367
+
368
+ [[package]]
369
+ name = "tigrbl_rs_ops_olap"
370
+ version = "0.1.11-dev.2"
371
+ dependencies = [
372
+ "tigrbl_rs_spec",
373
+ ]
374
+
375
+ [[package]]
376
+ name = "tigrbl_rs_ops_oltp"
377
+ version = "0.1.11-dev.2"
378
+ dependencies = [
379
+ "tigrbl_rs_ports",
380
+ "tigrbl_rs_spec",
381
+ ]
382
+
383
+ [[package]]
384
+ name = "tigrbl_rs_ops_realtime"
385
+ version = "0.1.11-dev.2"
386
+ dependencies = [
387
+ "tigrbl_rs_spec",
388
+ ]
389
+
390
+ [[package]]
391
+ name = "tigrbl_rs_ports"
392
+ version = "0.1.11-dev.2"
393
+ dependencies = [
394
+ "tigrbl_rs_spec",
395
+ ]
396
+
397
+ [[package]]
398
+ name = "tigrbl_rs_runtime"
399
+ version = "0.1.11-dev.2"
400
+ dependencies = [
401
+ "tigrbl_rs_atoms",
402
+ "tigrbl_rs_engine_inmemory",
403
+ "tigrbl_rs_engine_postgres",
404
+ "tigrbl_rs_engine_sqlite",
405
+ "tigrbl_rs_kernel",
406
+ "tigrbl_rs_ops_oltp",
407
+ "tigrbl_rs_ports",
408
+ "tigrbl_rs_spec",
409
+ ]
410
+
411
+ [[package]]
412
+ name = "tigrbl_rs_spec"
413
+ version = "0.1.11-dev.2"
414
+ dependencies = [
415
+ "serde",
416
+ "serde_json",
417
+ ]
418
+
419
+ [[package]]
420
+ name = "tigrbl_runtime_bindings"
421
+ version = "0.1.11-dev.2"
422
+ dependencies = [
423
+ "pyo3",
424
+ "serde_json",
425
+ "tigrbl_rs_kernel",
426
+ "tigrbl_rs_runtime",
427
+ "tigrbl_rs_spec",
428
+ ]
429
+
430
+ [[package]]
431
+ name = "unicode-ident"
432
+ version = "1.0.24"
433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
434
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
435
+
436
+ [[package]]
437
+ name = "unindent"
438
+ version = "0.2.4"
439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
440
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
441
+
442
+ [[package]]
443
+ name = "vcpkg"
444
+ version = "0.2.15"
445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
446
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
447
+
448
+ [[package]]
449
+ name = "version_check"
450
+ version = "0.9.5"
451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
452
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
453
+
454
+ [[package]]
455
+ name = "zerocopy"
456
+ version = "0.8.48"
457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
458
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
459
+ dependencies = [
460
+ "zerocopy-derive",
461
+ ]
462
+
463
+ [[package]]
464
+ name = "zerocopy-derive"
465
+ version = "0.8.48"
466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
467
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
468
+ dependencies = [
469
+ "proc-macro2",
470
+ "quote",
471
+ "syn",
472
+ ]
473
+
474
+ [[package]]
475
+ name = "zmij"
476
+ version = "1.0.21"
477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
478
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
@@ -0,0 +1,15 @@
1
+ [workspace]
2
+ resolver = "2"
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
+
5
+ [workspace.package]
6
+ version = "0.1.11-dev.2"
7
+ edition = "2021"
8
+ license = "Apache-2.0"
9
+ authors = ["Jacob Stewart <jacob@swarmauri.com>"]
10
+ rust-version = "1.81"
11
+
12
+ [workspace.dependencies]
13
+ serde = { version = "1", features = ["derive"] }
14
+ serde_json = "1"
15
+ pyo3 = { version = "0.22", features = ["macros"] }
@@ -0,0 +1,48 @@
1
+ Metadata-Version: 2.4
2
+ Name: tigrbl-runtime
3
+ Version: 0.1.11.dev2
4
+ Classifier: Development Status :: 1 - Planning
5
+ Classifier: Programming Language :: Python :: 3.10
6
+ Classifier: Programming Language :: Python :: 3.11
7
+ Classifier: Programming Language :: Python :: 3.12
8
+ Classifier: Programming Language :: Python :: 3.13
9
+ Classifier: Programming Language :: Python
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Programming Language :: Python :: 3 :: Only
12
+ Requires-Dist: tigrbl-typing
13
+ Requires-Dist: tigrbl-kernel
14
+ Requires-Dist: tigrbl-atoms
15
+ Requires-Dist: tigrbl-base
16
+ Requires-Dist: tigrbl-core
17
+ Requires-Dist: numba>=0.61.2
18
+ Summary: Runtime pipeline and Rust execution bridge for Tigrbl.
19
+ Keywords: tigrbl,sdk,standards,framework
20
+ Author-email: Jacob Stewart <jacob@swarmauri.com>
21
+ License-Expression: Apache-2.0
22
+ Requires-Python: >=3.10, <3.14
23
+ Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
24
+
25
+ # tigrbl_runtime
26
+
27
+ This file is a package-local distribution entry point.
28
+ It is not the authoritative location for repository governance, current target status, current state reporting, certification claims, or release evidence.
29
+
30
+ ## Canonical repository docs
31
+
32
+ - `README.md`
33
+ - `docs/README.md`
34
+ - `docs/conformance/CURRENT_TARGET.md`
35
+ - `docs/conformance/CURRENT_STATE.md`
36
+ - `docs/conformance/NEXT_STEPS.md`
37
+ - `docs/governance/DOC_POINTERS.md`
38
+ - `docs/developer/PACKAGE_CATALOG.md`
39
+ - `docs/developer/PACKAGE_LAYOUT.md`
40
+
41
+ ## Package identity
42
+
43
+ - workspace path: `pkgs/core/tigrbl_runtime`
44
+ - workspace class: hybrid core Python/Rust package
45
+ - implementation layout: `tigrbl_runtime/` and `src/`
46
+
47
+ Long-form repository documentation is governed from `docs/`.
48
+
@@ -0,0 +1,23 @@
1
+ # tigrbl_runtime
2
+
3
+ This file is a package-local distribution entry point.
4
+ It is not the authoritative location for repository governance, current target status, current state reporting, certification claims, or release evidence.
5
+
6
+ ## Canonical repository docs
7
+
8
+ - `README.md`
9
+ - `docs/README.md`
10
+ - `docs/conformance/CURRENT_TARGET.md`
11
+ - `docs/conformance/CURRENT_STATE.md`
12
+ - `docs/conformance/NEXT_STEPS.md`
13
+ - `docs/governance/DOC_POINTERS.md`
14
+ - `docs/developer/PACKAGE_CATALOG.md`
15
+ - `docs/developer/PACKAGE_LAYOUT.md`
16
+
17
+ ## Package identity
18
+
19
+ - workspace path: `pkgs/core/tigrbl_runtime`
20
+ - workspace class: hybrid core Python/Rust package
21
+ - implementation layout: `tigrbl_runtime/` and `src/`
22
+
23
+ Long-form repository documentation is governed from `docs/`.
@@ -0,0 +1,13 @@
1
+ [package]
2
+ name = "tigrbl_rs_atoms"
3
+ version.workspace = true
4
+ edition.workspace = true
5
+ license.workspace = true
6
+ authors.workspace = true
7
+ rust-version.workspace = true
8
+ description = "Rust atom catalog, phase algebra, and sys handler atoms for Tigrbl."
9
+ readme = "README.md"
10
+
11
+ [dependencies]
12
+ tigrbl_rs_ports = { path = "../tigrbl_rs_ports", version = "0.1.11-dev.2"}
13
+ tigrbl_rs_spec = { path = "../tigrbl_rs_spec", version = "0.1.11-dev.2"}
@@ -0,0 +1,23 @@
1
+ # tigrbl_rs_atoms
2
+
3
+ This file is a package-local distribution entry point.
4
+ It is not the authoritative location for repository governance, current target status, current state reporting, certification claims, or release evidence.
5
+
6
+ ## Canonical repository docs
7
+
8
+ - `README.md`
9
+ - `docs/README.md`
10
+ - `docs/conformance/CURRENT_TARGET.md`
11
+ - `docs/conformance/CURRENT_STATE.md`
12
+ - `docs/conformance/NEXT_STEPS.md`
13
+ - `docs/governance/DOC_POINTERS.md`
14
+ - `docs/developer/PACKAGE_CATALOG.md`
15
+ - `docs/developer/PACKAGE_LAYOUT.md`
16
+
17
+ ## Package identity
18
+
19
+ - workspace path: `crates/tigrbl_rs_atoms`
20
+ - workspace class: Rust crate
21
+ - implementation layout: `src/`
22
+
23
+ Long-form repository documentation is governed from `docs/`.
@@ -0,0 +1,6 @@
1
+ use crate::phases::AtomPhase;
2
+
3
+ #[derive(Debug, Clone, Default, PartialEq, Eq)]
4
+ pub struct PhaseAlgebra {
5
+ pub phases: Vec<AtomPhase>,
6
+ }
@@ -0,0 +1,6 @@
1
+ use crate::phases::AtomPhase;
2
+
3
+ pub trait AtomStep: Send + Sync {
4
+ fn name(&self) -> &'static str;
5
+ fn phase(&self) -> AtomPhase;
6
+ }
@@ -0,0 +1,10 @@
1
+ use std::collections::BTreeMap;
2
+
3
+ use tigrbl_rs_spec::{request::RequestEnvelope, response::ResponseEnvelope, values::Value};
4
+
5
+ #[derive(Debug, Clone, Default, PartialEq)]
6
+ pub struct AtomContext {
7
+ pub request: RequestEnvelope,
8
+ pub response: Option<ResponseEnvelope>,
9
+ pub scratch: BTreeMap<String, Value>,
10
+ }
@@ -0,0 +1,4 @@
1
+ use crate::context::base::AtomContext;
2
+
3
+ #[derive(Debug, Clone, Default, PartialEq)]
4
+ pub struct BoundContext(pub AtomContext);
@@ -0,0 +1,4 @@
1
+ use crate::context::base::AtomContext;
2
+
3
+ #[derive(Debug, Clone, Default, PartialEq)]
4
+ pub struct EgressContext(pub AtomContext);
@@ -0,0 +1,4 @@
1
+ use crate::context::base::AtomContext;
2
+
3
+ #[derive(Debug, Clone, Default, PartialEq)]
4
+ pub struct EncodedContext(pub AtomContext);
@@ -0,0 +1,4 @@
1
+ use crate::context::base::AtomContext;
2
+
3
+ #[derive(Debug, Clone, Default, PartialEq)]
4
+ pub struct ErrorContext(pub AtomContext);
@@ -0,0 +1,4 @@
1
+ use crate::context::base::AtomContext;
2
+
3
+ #[derive(Debug, Clone, Default, PartialEq)]
4
+ pub struct IngressContext(pub AtomContext);
@@ -0,0 +1,12 @@
1
+ pub mod base;
2
+ pub mod bound;
3
+ pub mod egress;
4
+ pub mod encoded;
5
+ pub mod error;
6
+ pub mod ingress;
7
+ pub mod phase_db;
8
+ pub mod planned;
9
+ pub mod resolved;
10
+ pub mod result;
11
+
12
+ pub use base::AtomContext;
@@ -0,0 +1,4 @@
1
+ use crate::context::base::AtomContext;
2
+
3
+ #[derive(Debug, Clone, Default, PartialEq)]
4
+ pub struct PhaseDbContext(pub AtomContext);
@@ -0,0 +1,4 @@
1
+ use crate::context::base::AtomContext;
2
+
3
+ #[derive(Debug, Clone, Default, PartialEq)]
4
+ pub struct PlannedContext(pub AtomContext);
@@ -0,0 +1,4 @@
1
+ use crate::context::base::AtomContext;
2
+
3
+ #[derive(Debug, Clone, Default, PartialEq)]
4
+ pub struct ResolvedContext(pub AtomContext);