winit 0.5.0

Cross-platform window creation library.
Documentation
language: rust

rust:
  - nightly
  - stable

addons:
  apt:
    packages:
    - libxxf86vm-dev

script:
  - cargo build --verbose
  - cargo test --verbose

os:
  - linux
  - osx

after_success: 
  - |
      [ $TRAVIS_BRANCH = master ] &&
      [ $TRAVIS_PULL_REQUEST = false ] &&
      cargo doc &&
      echo '<meta http-equiv=refresh content=0;url=glutin/index.html>' > target/doc/index.html &&
      sudo pip install ghp-import &&
      ghp-import -n target/doc &&
      git push -fq https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages
  - |
      [ $TRAVIS_BRANCH = master ] &&
      [ $TRAVIS_PULL_REQUEST = false ] &&
      cargo publish --token ${CRATESIO_TOKEN}