disklru 0.3.3

DiskLRU is an experimental LRU store.
Documentation
image: rust:latest

variables:
  REPO_NAME: gitlab.com/liberecofr/disklru

before_script:
  - rustc --version
  - cargo --version
  - echo $CI_BUILD_REF
  - echo $CI_PROJECT_DIR

stages:
  - build
  - test

build:
  stage: build
  script:
    - cargo build

release:
  stage: build
  script:
    - cargo build --release

test:
  stage: test
  script:
    - cargo test

bench:
  image: rustlang/rust:nightly
  stage: test
  script:
    - cd bench && cargo bench