I built a TOML-based task runner in Rust

rust dev.to

Every project I work on has the same problem. There's always a set of commands I run in the same order every time, setting up dependencies, building, running checks. I got tired of either remembering them or keeping a random notes file. Makefiles work but feel wrong outside of C projects. npm scripts are JavaScript-only. just is great but it's another syntax to learn on top of everything else. So I built xeq. You define named scripts in a xeq.toml file and run them with one command: [che

Read Full Tutorial open_in_new
arrow_back Back to Tutorials