1
0
Fork 0
mirror of https://github.com/sile/hls_m3u8.git synced 2024-05-04 17:48:59 +00:00
hls_m3u8/Cargo.toml

45 lines
1 KiB
TOML
Raw Normal View History

2018-02-11 06:10:52 +00:00
[package]
name = "hls_m3u8"
2021-08-02 22:11:16 +00:00
version = "0.4.1" # remember to update html_root_url
2020-04-10 00:11:58 +00:00
authors = ["Takeru Ohta <phjgt308@gmail.com>", "Luro02 <24826124+Luro02@users.noreply.github.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"
2020-04-10 00:13:44 +00:00
categories = ["parser-implementations"]
2018-02-14 20:27:06 +00:00
2020-04-09 06:20:02 +00:00
[features]
default = []
2020-04-19 08:46:15 +00:00
perf = []
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
2020-04-18 10:50:45 +00:00
stable-vec = { version = "0.4" }
2018-02-13 15:25:33 +00:00
[dev-dependencies]
2020-02-02 14:23:47 +00:00
pretty_assertions = "0.6"
2020-04-09 06:19:28 +00:00
version-sync = "0.9"
2020-04-25 07:41:29 +00:00
automod = "0.2"
2020-04-14 21:23:03 +00:00
criterion = "0.3.1"
[[bench]]
2020-04-18 10:51:10 +00:00
name = "bench_main"
2020-04-14 21:23:03 +00:00
harness = false