csv 0.13.4

CSV parsing with automatic type based decoding and encoding.
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

set -e

for f in *.rs; do
  rustc -L "../build/" "$f"
  ./${f%%.rs}
  rm -f ${f%%.rs}
done