lowdash 0.5.3

A Lodash inspired utility library to manipulate array and object for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
name: Release

on:
  push:
    tags:
      - 'v[0-9]+.*'
jobs:
  crates:
    if: github.repository_owner == 'liberocks'
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - name: publish package to crates
        run: |
          cargo package
          cargo publish --token ${{ secrets.CARGO_TOKEN }}