pickledb 0.4.0

A lightweight and simple key-value store written in Rust, heavily inspired by [Python's PickleDB](https://pythonhosted.org/pickleDB/)
Documentation
sudo: false

language: rust

rust:
  - stable
  - beta
  - nightly

os:
  - linux
  - osx
  - windows

before_script:
  - rustup component add rustfmt
  - if [[ ${TRAVIS_RUST_VERSION} == stable ]]; then
      rustup component add clippy;
    fi

script:
  - cargo fmt -- --check
  - cargo test
  - if [[ ${TRAVIS_RUST_VERSION} == stable ]]; then
      cargo clippy --all-targets -- --deny clippy::all;
    fi