bendecode 0.1.3

bendecode is a simple bencode parser specifically made for torrent files. It converts the file provided into a format acceptable in rust(structs and enums).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
name: Build
on: [push, pull_request]
env:
  CARGO_TERM_COLOR: always
jobs:
  lint:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@master
      - uses: actions-rs/toolchain@v1
        with:
          toolchain: nightly-2023-08-14
          override: true
      - name: Build
        run: cargo build --verbose