lrumap 0.1.0

A safe Least Recently Used (LRU) cache implementation with ordered and unordered support.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
name: Clippy

on: [push]

jobs:
  clippy:
    runs-on: ubuntu-latest
    timeout-minutes: 30
    steps:
      - uses: actions/checkout@v2
      
      - name: Install Rust
        uses: hecrj/setup-rust-action@v1

      - name: Build tests
        run: |
          cargo clippy -- -D warnings