mirror of
https://github.com/rutgersc/m3u8-rs.git
synced 2025-01-03 03:38:40 +00:00
Merge pull request #34 from rutgersc/ci-check-formatting
CI check formatting
This commit is contained in:
commit
f104d431d9
4 changed files with 14 additions and 2 deletions
5
.github/workflows/rust-windows.yml
vendored
5
.github/workflows/rust-windows.yml
vendored
|
@ -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
|
||||
|
|
5
.github/workflows/rust.yml
vendored
5
.github/workflows/rust.yml
vendored
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
# 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.
|
||||
|
||||
|
|
Loading…
Reference in a new issue