rust_sodium 0.4.0

Fast cryptographic library for Rust (bindings to libsodium)
Documentation
env:
  global:
    - RUST_BACKTRACE=1
    - PATH=$PATH:$HOME/.cargo/bin
os:
  - linux
  - osx
language: rust
rust:
  - 1.17.0
  - nightly-2017-04-28
sudo: false
branches:
  only:
    - master
cache:
  cargo: true
before_script:
  - curl -sSL https://github.com/maidsafe/QA/raw/master/travis/cargo_install.sh > cargo_install.sh
  - bash cargo_install.sh cargo-prune;
  - if [ "${TRAVIS_RUST_VERSION}" = 1.17.0 ]; then
      bash cargo_install.sh rustfmt 0.8.3;
    elif [ "${TRAVIS_OS_NAME}" = linux ]; then
      bash cargo_install.sh clippy 0.0.128;
    fi
script:
  - if [ "${TRAVIS_RUST_VERSION}" = 1.17.0 ]; then
      (
        set -x;
        cargo fmt -- --write-mode=diff &&
        cargo test --release --verbose &&
        cargo run --manifest-path systest/Cargo.toml &&
        cargo test --release --verbose --manifest-path rust_sodium-sys/Cargo.toml
      );
    elif [ "${TRAVIS_OS_NAME}" = linux ]; then
      (
        set -x;
        cargo clippy &&
        cargo clippy --profile=test &&
        cargo clippy --manifest-path rust_sodium-sys/Cargo.toml &&
        cargo clippy --profile=test --manifest-path rust_sodium-sys/Cargo.toml
      );
    fi
before_cache:
  - cargo prune