2016-06-03 18:56:45 +00:00
|
|
|
[package]
|
|
|
|
name = "m3u8-rs"
|
2022-04-13 20:57:56 +00:00
|
|
|
version = "4.0.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"
|
2021-11-17 12:37:55 +00:00
|
|
|
edition = "2018"
|
2016-06-03 18:56:45 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2021-11-17 12:10:18 +00:00
|
|
|
nom = { version = "7", optional = true }
|
2022-07-20 08:30:34 +00:00
|
|
|
chrono = { version = "0.4" }
|
2021-04-18 17:03:13 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["parser"]
|
|
|
|
parser = ["nom"]
|
|
|
|
|