bs58 0.5.1

Another Base58 codec implementation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
jobs:
  pull_request:
    uses: Nullus157/.github/.github/workflows/pull_request.yml@main
  success:
    runs-on: ubuntu-latest
    needs: [pull_request]
    if: ${{ always() }}
    steps:
    - if: ${{ contains(needs.*.result, 'failure')  }}
      run: exit 1
    - if: ${{ contains(needs.*.result, 'cancelled')  }}
      run: exit 1
    - if: ${{ contains(needs.*.result, 'skipped')  }}
      run: exit 1

on:
  pull_request:
    branches: [main]