openat 0.1.21

A wrapper around openat, symlinkat, and similar system calls
Documentation
sudo: false
dist: trusty
language: rust

cache:
- cargo

before_cache:
- rm -r $TRAVIS_BUILD_DIR/target/debug

jobs:
  include:
  - os: linux
    rust: stable
  - os: linux
    rust: beta
  - os: linux
    rust: nightly
  - os: macos
    osx_image: xcode9.3
    rust: stable

  # deploy
  - stage: publish
    os: linux
    rust: stable
    env:
    install: true
    script: true

    deploy:
    - provider: script
      script: 'cargo publish --verbose --token=$CARGO_TOKEN'
      on:
        tags: true