dreamstack/Cargo.toml
enzotar 7805b94704 feat: component registry with styled variants, dreamstack add/convert CLI, and showcase
- Phase 1: Component parser + codegen (emit_component_decl, emit_component_use, emit_match)
- Phase 2: 6 registry components (button, input, card, badge, dialog, toast)
- Phase 3: dreamstack add CLI with dependency resolution and --list/--all
- Phase 4: dreamstack convert TSX→DS transpiler with --shadcn GitHub fetch
- Phase 5: 120+ lines variant CSS (buttons, badges, cards, dialog, toast, input)
- New example: showcase.ds demonstrating all component styles
2026-02-26 13:27:49 -08:00

31 lines
832 B
TOML

[workspace]
resolver = "2"
members = [
"compiler/ds-parser",
"compiler/ds-analyzer",
"compiler/ds-codegen",
"compiler/ds-layout",
"compiler/ds-types",
"compiler/ds-incremental",
"compiler/ds-cli",
"engine/ds-physics",
"engine/ds-stream",
"engine/ds-stream-wasm",
"bench",
]
[workspace.package]
version = "0.1.0"
edition = "2024"
license = "MIT"
[workspace.dependencies]
ds-parser = { path = "compiler/ds-parser" }
ds-analyzer = { path = "compiler/ds-analyzer" }
ds-codegen = { path = "compiler/ds-codegen" }
ds-layout = { path = "compiler/ds-layout" }
ds-types = { path = "compiler/ds-types" }
ds-incremental = { path = "compiler/ds-incremental" }
ds-physics = { path = "engine/ds-physics" }
ds-stream = { path = "engine/ds-stream" }
ds-stream-wasm = { path = "engine/ds-stream-wasm" }