]> git.proxmox.com Git - rustc.git/blob - src/vendor/term_size/justfile
New upstream version 1.17.0+dfsg1
[rustc.git] / src / vendor / term_size / justfile
1 @update-contributors:
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
9 rm CONTRIBUTORS.md.bak
10
11 run-test TEST:
12 cargo test --test {{TEST}}
13
14 debug TEST:
15 cargo test --test {{TEST}} --features debug
16
17 run-tests:
18 cargo test --features "yaml unstable"
19
20 @bench: nightly
21 cargo bench && just remove-nightly
22
23 nightly:
24 rustup override add nightly
25
26 remove-nightly:
27 rustup override remove
28
29 @lint: nightly
30 cargo build --features lints && just remove-nightly
31
32 clean:
33 cargo clean
34 find . -type f -name "*.orig" -exec rm {} \;
35 find . -type f -name "*.bk" -exec rm {} \;
36 find . -type f -name ".*~" -exec rm {} \;