mirror of
https://github.com/sile/hls_m3u8.git
synced 2024-11-15 20:01:01 +00:00
42 lines
1,010 B
TOML
42 lines
1,010 B
TOML
[package]
|
|
name = "hls_m3u8"
|
|
version = "0.3.0" # remember to update html_root_url
|
|
authors = ["Takeru Ohta <phjgt308@gmail.com>", "Luro02 <24826124+Luro02@users.noreply.github.com>"]
|
|
description = "HLS m3u8 parser/generator"
|
|
homepage = "https://github.com/sile/hls_m3u8"
|
|
repository = "https://github.com/sile/hls_m3u8"
|
|
readme = "README.md"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["hls", "m3u8"]
|
|
edition = "2018"
|
|
categories = ["parser-implementations"]
|
|
|
|
[features]
|
|
default = []
|
|
[badges]
|
|
codecov = { repository = "sile/hls_m3u8" }
|
|
travis-ci = { repository = "sile/hls_m3u8" }
|
|
|
|
[dependencies]
|
|
chrono = { version = "0.4", optional = true }
|
|
backtrace = { version = "0.3", features = ["std"], optional = true }
|
|
|
|
derive_builder = "0.9"
|
|
hex = "0.4"
|
|
thiserror = "1.0"
|
|
|
|
derive_more = "0.99"
|
|
shorthand = "0.1"
|
|
strum = { version = "0.17", features = ["derive"] }
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "0.6"
|
|
version-sync = "0.9"
|
|
criterion = "0.3.1"
|
|
|
|
[[bench]]
|
|
name = "parse"
|
|
harness = false
|
|
|
|
[profile.bench]
|
|
debug = true
|