2 echo 'Removing old CONTRIBUTORS.md'
3 mv CONTRIBUTORS.md CONTRIBUTORS.md.bak
4 echo 'Downloading a list of new contributors'
5 echo "The following is a list of contributors in alphabetical order:" > CONTRIBUTORS.md
6 echo "" >> CONTRIBUTORS.md
7 echo "" >> CONTRIBUTORS.md
8 githubcontrib --owner kbknapp --repo term_size-rs --sha master --cols 6 --format md --showlogin true --sortBy login >> CONTRIBUTORS.md
12 cargo test --test {{TEST}}
15 cargo test --test {{TEST}} --features debug
18 cargo test --features "yaml unstable"
21 cargo bench && just remove-nightly
24 rustup override add nightly
27 rustup override remove
30 cargo build --features lints && just remove-nightly
34 find . -type f -name "*.orig" -exec rm {} \;
35 find . -type f -name "*.bk" -exec rm {} \;
36 find . -type f -name ".*~" -exec rm {} \;