deft v0.7.2
deft
An experiment: Cargo-style tooling for C/C++, built to see how far AI can take it..
curl -fsSL https://deft-cli.com/install.sh | sh
deft is in early access. Expect bugs, breaking changes, and rough edges.
Why deft
Built for speed.
Designed for scale.
01
Strict project layout
No globbing, no guessing. The entry point is
exactly
src/main.cpp / src/main.c (executables) or src/lib.cpp /
src/lib.c (libraries). Missing it fails the build immediately.02
Reproducible builds
deft.lock pins every dependency to an exact git
commit SHA, written atomically. deft build always honors the lock;
deft update is the only command that rewrites it.03
Parallel by default
A
std::thread + Mutex + mpsc work
queue compiles translation units across all cores (-j to tune), streaming
diagnostics back as each unit finishes.