snaggen@programming.dev to Rust@programming.dev · 1 year agoThis Week in Rust 511this-week-in-rust.orgexternal-linkmessage-square4fedilinkarrow-up118arrow-down10
arrow-up118arrow-down1external-linkThis Week in Rust 511this-week-in-rust.orgsnaggen@programming.dev to Rust@programming.dev · 1 year agomessage-square4fedilink
minus-square0xDEADBEEFCAFE@programming.devlinkfedilinkarrow-up2·1 year agoTake a look at xtask. It essentially relies on the fact that you can add cargo aliases in local files in order to execute specific packages. When I create a workspace that has some form of code generation I like to overwrite cargo gen to whatever is doing the generating.
Take a look at xtask. It essentially relies on the fact that you can add
cargo
aliases in local files in order to execute specific packages.When I create a workspace that has some form of code generation I like to overwrite
cargo gen
to whatever is doing the generating.