# Empty `[workspace]` table declares this crate as a standalone # Cargo workspace of its own, so it is NOT auto-discovered as a member # of the root workspace at /home/brummel/dev/ailang/Cargo.toml. The # spec (`docs/specs/2026-05-12-cross-model-authoring-form-test.md` # §Architecture lines 90-95) requires this experiment to live outside # the root workspace; the root Cargo.toml is intentionally not modified. [workspace] [package] name = "xmodel-render" version = "0.0.1" edition = "2021" publish = false [[bin]] name = "xmodel-render" path = "src/main.rs" [lib] name = "xmodel_render" path = "src/lib.rs" [dependencies] ailang-core = { path = "../../../crates/ailang-core" } ailang-surface = { path = "../../../crates/ailang-surface" } serde_json = "1" anyhow = "1" [dev-dependencies] tiktoken-rs = "0.6"