fst 0.3.0

Use finite state transducers to compactly represents sets or maps of many strings (> 1 billion is possible).
Documentation
language: rust
rust:
  - 1.20.0
  - stable
  - beta
  - nightly
script:
  - cargo build --verbose
  - cargo build --verbose --manifest-path fst-bin/Cargo.toml
  - cargo doc
  - cargo test --verbose
  - cargo test --lib --no-default-features
  - if [ "$TRAVIS_RUST_VERSION" = "nightly" ]; then
      cargo bench --verbose --no-run;
    fi