1
0
Fork 0
mirror of https://github.com/sile/hls_m3u8.git synced 2024-05-18 08:22:59 +00:00
hls_m3u8/Cargo.toml

29 lines
667 B
TOML
Raw Normal View History

2018-02-11 06:10:52 +00:00
[package]
name = "hls_m3u8"
2019-09-09 11:16:30 +00:00
version = "0.2.1"
2018-02-11 06:10:52 +00:00
authors = ["Takeru Ohta <phjgt308@gmail.com>"]
2018-02-14 20:27:06 +00:00
description = "HLS m3u8 parser/generator"
homepage = "https://github.com/sile/hls_m3u8"
repository = "https://github.com/sile/hls_m3u8"
readme = "README.md"
2019-09-09 11:05:27 +00:00
license = "MIT OR Apache-2.0"
2018-02-14 20:27:06 +00:00
keywords = ["hls", "m3u8"]
2019-03-31 09:58:11 +00:00
edition = "2018"
2019-09-08 10:23:33 +00:00
categories = ["parser"]
2018-02-14 20:27:06 +00:00
[badges]
2019-09-22 18:33:40 +00:00
travis-ci = { repository = "sile/hls_m3u8" }
codecov = { repository = "sile/hls_m3u8" }
2018-02-11 06:10:52 +00:00
[dependencies]
thiserror = "1.0"
2020-02-02 14:23:47 +00:00
derive_builder = "0.9"
chrono = "0.4"
strum = { version = "0.17", features = ["derive"] }
derive_more = "0.99"
hex = "0.4"
2020-02-02 12:38:11 +00:00
shorthand = "0.1"
2018-02-13 15:25:33 +00:00
[dev-dependencies]
2020-02-02 14:23:47 +00:00
pretty_assertions = "0.6"