Files
cubelinux-2/Cargo.toml
T
CUBELinux-2 fe64b869e4 feat(trace+ai): add cubetrace package and wire DBT/AI/CUBEsys command + module edits (green-lit WIP)
Brings in the cubetrace crate (PDF Package 4, §547): wraps a DBI engine via an
FFI seam and streams trace events (basic blocks, syscalls) into cubestore,
tagging each with CZYX coordinates and header flags.

- Cargo.toml: register cubetrace workspace member
- cubeai/src/lib.rs, cubedbt/src/lib.rs: DBT/AI rule + trace integration edits
- cubecode/src/{cb,cell}.rs: code-cell bytecode/module plumbing for traces
- cubesys/src/commands.rs: trace/AI command surface expansion
- cubetrace/: new crate (builds; 2 non-fatal warnings)

All layers of the OS-in-CUBE migration pass; recorded per user green-light.
2026-08-13 17:31:40 -04:00

19 lines
270 B
TOML

[workspace]
resolver = "2"
members = [
"cubecoords",
"cubestore",
"cubefs",
"cubecode",
"cubecrypt",
"cubesys",
"cubedbt",
"cubeai",
"cubetrace",
"cube-bench",
]
[workspace.package]
edition = "2021"
license = "MIT OR Apache-2.0"