lru_time_cache 0.10.0

Implementation of a Least Recently Used caching algorithm in a container which may be limited by size or time, ordered by most recently seen.
Documentation
env:
  global:
    - RUST_BACKTRACE=1
    - PATH=$PATH:$HOME/.cargo/bin
os:
  - linux
  - osx
language: rust
rust:
  - stable
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;
  - rustup component add rustfmt;
  - rustup component add clippy;
script:
  - set -x;
    cargo fmt -- --check &&
    cargo clippy &&
    cargo clippy --profile test &&
    cargo test --release --verbose &&
    cargo test --features fake_clock --release --verbose
before_cache:
 - cargo prune