m3u8-rs/Cargo.toml
Sebastian Dröge 0ed0ce51f8 Migrate to Rust 2018
Cleans up some noise.
2021-11-17 16:00:23 +02:00

19 lines
442 B
TOML

[package]
name = "m3u8-rs"
version = "2.1.0"
authors = ["Rutger"]
readme = "README.md"
repository = "https://github.com/rutgersc/m3u8-rs"
description = "A library for parsing m3u8 files (Apple's HTTP Live Streaming (HLS) protocol)."
documentation = "https://rutgersc.github.io/doc/m3u8_rs/index.html"
license = "MIT"
edition = "2018"
[dependencies]
nom = { version = "7", optional = true }
[features]
default = ["parser"]
parser = ["nom"]