initial commit

This commit is contained in:
Andrew Gallant
2016-02-27 11:07:26 -05:00
commit 9d1e619ff3
11 changed files with 259 additions and 0 deletions

12
.travis.yml Normal file
View File

@@ -0,0 +1,12 @@
language: rust
rust:
- stable
- beta
- nightly
script:
- cargo build --verbose
- cargo doc
- cargo test --verbose
- if [ "$TRAVIS_RUST_VERSION" = "nightly" ]; then
cargo bench --verbose;
fi