zcache 0.0.8

Simple in-memory Rust cache with time-based expiration
Documentation
name: Rust CI

on:
  push:
    branches: [ main ]
  pull_request:
    branches: [ main ]

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - name: Setup Rust
        uses: actions-rs/toolchain@v1
        with:
          toolchain: stable
          override: true
      - name: Check
        uses: actions-rs/cargo@v1
        with:
          command: check
      - name: Lint
        run: cargo clippy --all --all-features -- -D warnings
      - name: Test
        uses: actions-rs/cargo@v1
        with:
          command: test