csv 0.12.4

CSV parsing with automatic type based decoding and encoding.
#!/bin/sh

set -e

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