Moved the meta stuff to wiki

This commit is contained in:
Pavan Kumar Sunkara 2020-05-01 10:52:04 +02:00
parent 087fab2ab3
commit 5ca217e8e8
9 changed files with 1 additions and 116 deletions

19
TODO.md
View file

@ -1,19 +0,0 @@
- [ ] update-todo.sh
- [ ] src/lib.rs
-[ ] 578:@TODO @release @docs
-[ ] 580:@TODO @release @docs
-[ ] 583:@TODO @release @docs
-[ ] 592:@TODO @release @docs
-[ ] 598:@TODO @release @docs
-[ ] 608:@TODO @release @docs
-[ ] 610:@TODO @release @docs
-[ ] 614:@TODO @release @docs
-[ ] 616:@TODO @release @docs
-[ ] 619:@TODO @release @docs
-[ ] 623:@TODO @release @docs
- [ ] src/app/parser.rs
-[ ] 678:@TODO @perf: cloning all these Apps ins't great, but since it's just displaying the help
- [ ] src/app/mod.rs
-[ ] 1760:@TODO @v3-alpha @perf: should only propagate globals to subcmd we find, or for help
- [ ] src/args/arg.rs
-[ ] 3545:@TODO @p2 @docs @release: write docs

View file

@ -1,8 +0,0 @@
#Version Date Builder Err Usage Err Parse1 Err Parse2 Err
1.0 2015-07-07 12408 840 16830 229 21235 725 27387 910
1.1 2015-07-16 11885 191 16670 595 20919 252 26868 457
1.2 2015-08-14 12563 587 17190 311 22421 233 28232 624
1.3 2015-09-01 10534 131 14648 874 18213 1070 24101 361
1.4 2015-09-09 10223 852 13203 749 18924 1216 23492 944
1.5 2015-11-12 5422 416 7974 680 9723 792 13389 1151
2.0 2016-01-27 4783 376 5263 481 9651 1015 10577 191

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.5 KiB

View file

@ -1,26 +0,0 @@
#!/usr/bin/gnuplot
reset
set terminal png
set output "clap_perf.png"
set xlabel "Version"
set xrange [0.9:2.1]
set ylabel "Time (ns)"
set yrange [0:35000]
set title "clap-rs Performance (Parse Time - Lower is Better) by Version"
set key inside right top
set grid
set style line 1 lc rgb '#0060ad' lt 1 lw 1 pt 7 ps .5 # --- blue
set style line 2 lc rgb '#dd181f' lt 1 lw 1 pt 5 ps .5 # --- red
set style line 3 lc rgb '#18dd00' lt 1 lw 1 pt 7 ps .5 # --- green
set style line 4 lc rgb '#000000' lt 1 lw 1 pt 5 ps .5 # --- black
plot "clap_perf.dat" u 1:3:4 notitle w yerrorbars ls 1, \
"" u 1:3 t "Create Parser Using Builder" w lines ls 1, \
"" u 1:5:6 notitle w yerrorbars ls 2, \
"" u 1:5 t "Create Parser Usage String" w lines ls 2, \
"" u 1:7:8 notitle "Parse Complex Args" w yerrorbars ls 3, \
"" u 1:7 t "Parse Complex Args" w lines ls 3, \
"" u 1:9:10 notitle w yerrorbars ls 4, \
"" u 1:9 t "Parse Very Complex Args" w lines ls 4

View file

@ -1,41 +0,0 @@
digraph dependencies {
N0[label="clap"];
N1[label="ansi_term"];
N2[label="bitflags"];
N3[label="clippy",color=blue];
N4[label="strsim"];
N5[label="term_size"];
N6[label="unicode-segmentation"];
N7[label="unicode-width"];
N8[label="vec_map"];
N9[label="yaml-rust",color=red];
N10[label="clippy_lints",color=blue];
N11[label="matches",color=blue];
N12[label="quine-mc_cluskey",color=blue];
N13[label="regex-syntax",color=red];
N14[label="rustc-serialize",color=blue];
N15[label="semver",color=blue];
N16[label="toml",color=blue];
N17[label="unicode-normalization",color=blue];
N0 -> N1[label="",style=dashed];
N0 -> N2[label=""];
N0 -> N3[label="",style=dashed,color=blue];
N0 -> N4[label="",style=dashed];
N0 -> N5[label="",style=dashed];
N0 -> N6[label=""];
N0 -> N7[label=""];
N0 -> N8[label=""];
N0 -> N9[label="",style=dashed,color=red];
N3 -> N10[label="",style=dashed,color=blue];
N5 -> N3[label="",style=dashed,color=blue];
N9 -> N3[label="",style=dashed,color=blue];
N9 -> N13[label="",style=dashed,color=red];
N10 -> N11[label="",style=dashed,color=blue];
N10 -> N12[label="",style=dashed,color=blue];
N10 -> N13[label="",style=dashed,color=blue];
N10 -> N14[label="",style=dashed,color=blue];
N10 -> N15[label="",style=dashed,color=blue];
N10 -> N16[label="",style=dashed,color=blue];
N10 -> N17[label="",style=dashed,color=blue];
N16 -> N14[label="",style=dashed,color=blue];
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 94 KiB

View file

@ -1,18 +0,0 @@
#!/bin/bash
rg -h 1>/dev/null || (echo "ripgrep not found" && false)
IFS=$'\n'
mv TODO.md TODO.bak || true
touch TODO.md
for FILE in $(rg '@TODO' --ignore-file='update-todo.sh' --files-with-matches); do
echo "- [ ] $FILE" >> TODO.md
for LINE in $(rg -noe '@TODO([ @a-zA-Z-]+):?(.*)$' $FILE); do
echo " -[ ] $LINE" >> TODO.md
done;
done;
unset IFS
rm TODO.bak || true

View file

@ -52,8 +52,5 @@ count-warnings:
find-warnings:
@cargo check 2>&1 | grep -A1 -e 'warning' | grep --only-matching -e '-->[^:]*' | sort | uniq -c | sort -nr
@update-todo:
./etc/update-todo.sh
@count-failures:
./etc/count-tests.sh
./count-tests.sh