// arbor-cli — the `arbor` command-line tool. // Inlines its own copies of the parse / layout / render pipeline so that the // resulting binary is self-contained. (El's `import` form today concatenates // source; once a real module loader lands this becomes a thin driver.) vessel "arbor-cli" { version "0.1.0" description "Command-line interface for the Arbor diagram language" authors ["Neuron Technologies"] edition "2026" } dependencies { arbor-core "0.1" arbor-parse "0.1" arbor-layout "0.1" arbor-render "0.1" } build { entry "src/main.el" output "dist/" }