epage@kbin.social to Rust Programming@lemmy.ml · 1 year agoAre we GUI (build) yet?plus-squareepage.github.ioexternal-linkmessage-square0fedilinkarrow-up112arrow-down10
arrow-up112arrow-down1external-linkAre we GUI (build) yet?plus-squareepage.github.ioepage@kbin.social to Rust Programming@lemmy.ml · 1 year agomessage-square0fedilink
epage@kbin.social to Rust Programming@lemmy.ml · 1 year agowinnow 0.5 parser combinator library is out, even easier and faster than beforeplus-squareepage.github.ioexternal-linkmessage-square0fedilinkarrow-up18arrow-down10
arrow-up18arrow-down1external-linkwinnow 0.5 parser combinator library is out, even easier and faster than beforeplus-squareepage.github.ioepage@kbin.social to Rust Programming@lemmy.ml · 1 year agomessage-square0fedilink
minus-squareepage@kbin.socialtoRust@programming.dev•clap::_derive::_tutorial - Rustlinkfedilinkarrow-up4·1 year agoThe tutorial makes a reference to this This requires enabling the derive feature flag. But if you aren’t as familiar with feature flags, this isn’t as helpful. More specifically on the front page we have $ cargo add clap --features derive Maybe we should push that down into the tutorial… linkfedilink
minus-squareepage@kbin.socialtoRust@programming.dev•What Cargo addons do you use?linkfedilinkarrow-up2·1 year ago cargo-feature cargo add can add and show features. The only thing its missing is removing of features. linkfedilink
The tutorial makes a reference to this
But if you aren’t as familiar with feature flags, this isn’t as helpful.
More specifically on the front page we have
$ cargo add clap --features derive
Maybe we should push that down into the tutorial…