expiremap 0.1.0-beta.3

A simple Key-Value map where each value has a custom expiry time.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
name: Publish to crates.io

on:
  workflow_dispatch:

jobs:
  publish:
    runs-on: ubuntu-latest
    container:
      image: rust:latest
    steps:
      - name: Checkout repository
        uses: actions/checkout@v3
      - name: Publish
        run: cargo publish
        env:
          CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}