podio 0.2.0

Additional trait for Read and Write to read and write Plain Old Data
Documentation
language: rust

arch:
  - amd64
  - s390x

os: linux
dist: bionic

rust:
    - stable
    - nightly

sudo: false

addons:
    apt:
        packages:
            - libcurl4-openssl-dev
            - libelf-dev
            - libdw-dev

notifications:
    email:
        on_success: never
        on_failure: always

script:
    - cargo build
    - cargo test
    - '[ "$TRAVIS_RUST_VERSION" != "nightly" ] || cargo bench'
    - cargo doc --no-deps
    - rustdoc --test README.md -L target/debug

after_success:
    - curl https://mvdnes.github.io/rust-docs/travis-doc-upload.sh | bash