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

32 lines
804 B
TOML
Raw Normal View History

2018-02-11 06:10:52 +00:00
[package]
name = "hls_m3u8"
2020-04-09 06:15:58 +00:00
version = "0.2.1" # remember to update html_root_url
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
codecov = { repository = "sile/hls_m3u8" }
2020-02-10 11:46:22 +00:00
travis-ci = { repository = "sile/hls_m3u8" }
2018-02-11 06:10:52 +00:00
[dependencies]
2020-03-20 11:05:16 +00:00
chrono = { version = "0.4", optional = true }
backtrace = { version = "0.3", features = ["std"], optional = true }
2020-02-10 11:46:22 +00:00
derive_builder = "0.9"
2020-02-02 14:23:47 +00:00
hex = "0.4"
2020-03-20 11:05:16 +00:00
thiserror = "1.0"
derive_more = "0.99"
2020-02-02 12:38:11 +00:00
shorthand = "0.1"
2020-02-10 11:46:22 +00:00
strum = { version = "0.17", features = ["derive"] }
2018-02-13 15:25:33 +00:00
[dev-dependencies]
2020-02-02 14:23:47 +00:00
pretty_assertions = "0.6"