Expand description
dstack — Development stack for AI-assisted multi-repo work.
This crate provides both a CLI binary (dstack) and a library for:
- Persistent memory (file-based or Eruka-backed)
- Multi-repo git sync
- Service deployment with smoke tests
- Pre-commit quality gates
§Example
use dstack::config::Config;
let cfg = Config::load().unwrap();
println!("Memory backend: {}", cfg.memory.backend);