m3u8-rs/Cargo.toml

18 lines
429 B
TOML
Raw Normal View History

2016-06-03 18:56:45 +00:00
[package]
name = "m3u8-rs"
2021-10-19 17:23:08 +00:00
version = "2.1.0"
2016-06-03 18:56:45 +00:00
authors = ["Rutger"]
2016-06-03 19:12:53 +00:00
readme = "README.md"
repository = "https://github.com/rutgersc/m3u8-rs"
description = "A library for parsing m3u8 files (Apple's HTTP Live Streaming (HLS) protocol)."
2016-06-03 19:39:36 +00:00
documentation = "https://rutgersc.github.io/doc/m3u8_rs/index.html"
license = "MIT"
2016-06-03 18:56:45 +00:00
[dependencies]
2021-04-18 17:03:13 +00:00
nom = { version = "5.1.0", optional = true }
[features]
default = ["parser"]
parser = ["nom"]