bencodex-rs 0.2.0

The Rust implementation of Bencodex
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
on:
  push:
    tags:
      - "*.*.*"

name: publish
jobs:
  publish-crate:
    runs-on: ubuntu-20.04
    steps:
      - uses: actions/checkout@v2
        with:
          submodules: recursive
      - uses: actions-rs/toolchain@v1.0.3
        with:
          toolchain: 1.49.0
      - run: cargo publish --token ${{ secrets.CRATES_IO_ACCESS_KEY }}