* Use docs.rs for documentation This would also allow deleting the `gh-pages` branch (which is pretty large). I'd also recommend adding `badges` and `categories` to make the crates.io page more useful (see [this](http://www.integer32.com/2017/01/20/categories-and-ci-badges.html)), but I'll leave that up to you. * Remove more references to old docs
24 lines
464 B
YAML
24 lines
464 B
YAML
sudo: false
|
|
language: rust
|
|
cache: cargo
|
|
# necessary for `travis-cargo coveralls --no-sudo`
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- libcurl4-openssl-dev
|
|
- libelf-dev
|
|
- libdw-dev
|
|
rust:
|
|
- stable
|
|
- beta
|
|
before_install:
|
|
- |
|
|
pip install 'travis-cargo<0.2' --user &&
|
|
export PATH=$HOME/.local/bin:$PATH
|
|
script:
|
|
- |
|
|
travis-cargo build &&
|
|
travis-cargo test &&
|
|
travis-cargo bench
|
|
after_success:
|
|
- travis-cargo coveralls --exclude-pattern=/target --no-sudo
|