linedance 0.2.0

iterator that streams lines either from files or stdin (like Python's fileinput)
Documentation
1
2
3
4
5
6
7
8
9
test:
    @echo "Running tests"
    cargo build --example simple_usage
    @echo
    @echo "Running simple_usage example: stdin"
    cat examples/data.txt | ./target/debug/examples/simple_usage
    @echo
    @echo "Running simple_usage example: file"
    ./target/debug/examples/simple_usage --files examples/*.txt