m3u8-rs/Cargo.toml
Sebastian Dröge 18739b59ac Release 5.0.1
2022-09-12 11:06:52 +03:00

20 lines
471 B
TOML

[package]
name = "m3u8-rs"
version = "5.0.1"
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 }
chrono = { version = "0.4" }
[features]
default = ["parser"]
parser = ["nom"]