m3u8-rs/Cargo.toml

20 lines
471 B
TOML
Raw Normal View History

2016-06-03 18:56:45 +00:00
[package]
name = "m3u8-rs"
2022-09-12 07:14:11 +00:00
version = "5.0.1"
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"
edition = "2018"
2016-06-03 18:56:45 +00:00
[dependencies]
nom = { version = "7", optional = true }
chrono = { version = "0.4" }
2021-04-18 17:03:13 +00:00
[features]
default = ["parser"]
parser = ["nom"]