Merge pull request #34 from rutgersc/ci-check-formatting

CI check formatting
This commit is contained in:
rutgersc 2021-10-19 19:50:26 +02:00 committed by GitHub
commit f104d431d9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 14 additions and 2 deletions

View file

@ -16,7 +16,12 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Run fmt
run: cargo fmt --all -- --check
- name: Run tests
run: cargo test --verbose

View file

@ -16,7 +16,12 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Run fmt
run: cargo fmt --all -- --check
- name: Run tests
run: cargo test --verbose

View file

@ -1,6 +1,6 @@
[package]
name = "m3u8-rs"
version = "2.0.0"
version = "2.1.0"
authors = ["Rutger"]
readme = "README.md"
repository = "https://github.com/rutgersc/m3u8-rs"

View file

@ -1,4 +1,6 @@
# m3u8-rs
# m3u8-rs
![crates.io](https://img.shields.io/crates/v/m3u8-rs.svg)
A Rust library for parsing m3u8 playlists (HTTP Live Streaming) [link](https://tools.ietf.org/html/draft-pantos-http-live-streaming-19).
Uses the [`nom` library](https://github.com/Geal/nom) for all of the parsing.