regex 0.1.37

An implementation of regular expressions for Rust.
Documentation
1
2
3
4
5
6
7
8
#!/bin/bash

set -e

cargo build --example shootout-regex-dna
exec diff \
  ./examples/regexdna-output.txt \
  <(./target/debug/examples/shootout-regex-dna < ./examples/regexdna-input.txt)