-
Notifications
You must be signed in to change notification settings - Fork 19
/
Cargo.toml
50 lines (42 loc) · 1.13 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[package]
name = "hls_m3u8"
version = "0.4.2" # remember to update html_root_url
authors = ["Takeru Ohta <[email protected]>", "Luro02 <[email protected]>"]
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 = []
perf = []
[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.20"
hex = "0.4"
thiserror = "1.0"
derive_more = { version = "1", features = [
"display",
"as_ref",
"from",
"deref",
"deref_mut",
] }
shorthand = "0.1"
strum = { version = "0.26.3", features = ["derive"] }
stable-vec = { version = "0.4" }
[dev-dependencies]
pretty_assertions = "1.4.0"
version-sync = "0.9"
automod = "1.0.14"
criterion = "0.5.1"
[[bench]]
name = "bench_main"
harness = false