dreamstack/compiler/ds-cli/Cargo.toml

20 lines
424 B
TOML
Raw Normal View History

[package]
name = "ds-cli"
compiler: v0.8–v1.0 milestones — generics, traits, async/effects, production hardening v0.8.0: Generics, Trait System, LSP Foundation (322 tests) - ds-parser: GenericParam, TraitDecl, ImplBlock, WhereClause, DefaultParam, Destructure - ds-types: GenericType, TraitRegistry, TypeExpander - ds-analyzer: AdvancedAnalyzer (unused imports, memo, dep depth, hot paths) - ds-codegen: CodeGenV2 (generic erasure, for-in/yield, tree shaking, minify) - ds-layout: FlexLayout (gap, padding, margin, border, position, alignment) - ds-diagnostic: LspDiagnostic, DiagnosticBatch (LSP format, suppression, dedup) - ds-incremental: IncrementalV2 (content hash, compile queue, error cache) v0.9.0: Async/Await, Effect System, Production Hardening (385 tests) - ds-parser: AsyncFn, EffectDeclV2, TryCatch, PipelineExpr, Decorator - ds-types: AsyncType (Promise/Future/Effect/Result), AdvancedType (intersection/mapped/conditional/branded) - ds-analyzer: ProductionAnalyzer (async boundaries, purity, complexity, coverage) - ds-codegen: CodeGenV3 (async/await, try/catch, pipeline, chunks, CSS, HMR) - ds-layout: AdvancedLayout (scroll, sticky, flex grow/shrink, shadow, transition) - ds-diagnostic: DiagnosticPipeline, DiagTag (file index, lint rules, escalation) - ds-incremental: BuildPipeline (profiles, workers, artifacts, source maps) v1.0.0: Production-Ready Compiler with Stable API (511 tests) - ds-parser: ParseError1, PartialAst, VisibilityV2, Namespace, DocComment, Pragma, NumericLit, ParseStats - ds-types: TypeInference (HM unification), SubtypeChecker, TypeSystemExt (opaque/existential/HKT) - ds-analyzer: FullAnalyzer (call graph, dead code, tail call, borrow check, vectorize) - ds-codegen: CodeGenFull (WASM, SSR, hydration, CSS modules, import maps, SIMD) - ds-layout: Animation, TextLayout, MediaQuery, ColorSpace, Gradient, Filter, LayoutStats - ds-diagnostic: DiagnosticSuite (SARIF, code frames, budgets, baselines, trending) - ds-incremental: BuildSystem (remote cache, build graph, plugins, hermetic, signing)
2026-03-11 16:16:42 -07:00
version = "1.0.0"
edition.workspace = true
[[bin]]
name = "dreamstack"
path = "src/main.rs"
[dependencies]
ds-parser = { workspace = true }
ds-analyzer = { workspace = true }
ds-codegen = { workspace = true }
ds-incremental = { workspace = true }
ds-diagnostic = { workspace = true }
ds-types = { workspace = true }
clap = { version = "4", features = ["derive"] }
notify = "8"
tiny_http = "0.12"