m3u8-rs/Cargo.toml

20 lines
519 B
TOML
Raw Permalink Normal View History

2016-06-03 18:56:45 +00:00
[package]
name = "m3u8-rs"
2024-01-26 17:56:34 +00:00
version = "6.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"
edition = "2018"
2016-06-03 18:56:45 +00:00
[dependencies]
nom = { version = "7", optional = true }
chrono = { version = "0.4", default-features = false, features = [ "std" ] }
2021-04-18 17:03:13 +00:00
[features]
default = ["parser"]
parser = ["nom"]