forked from emarsden/dash-mpd-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
61 lines (57 loc) · 1.99 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
51
52
53
54
55
56
57
58
59
60
61
[package]
name = "dash-mpd"
version = "0.10.0"
authors = ["Eric Marsden <eric.marsden@risk-engineering.org>"]
description = "Parse, serialize, download an MPD manifest for MPEG-DASH or WebM-DASH media streaming"
readme = "README.md"
repository = "https://github.com/emarsden/dash-mpd-rs"
license = "MIT"
keywords = ["video", "streaming", "MPD", "DASH", "MPEG"]
categories = ["multimedia", "multimedia::video", "parser-implementations"]
publish = true
edition = "2021"
[dependencies]
base64 = "0.21"
base64-serde = "0.7"
serde = { version = "1", features = ["derive"] }
serde_with = { version = "3", features = ["base64"] }
quick-xml = { version = "0.29", features = ["serialize", "overlapped-lists"] }
chrono = { version = ">=0.4.20", features = ["serde"] }
num-traits = "0.2"
iso8601 = "0.6"
regex = ">=1.5.5"
thiserror = "1"
fs-err = "2.9"
log = "0.4"
url = { version = "2", optional = true }
data-url = { version = "0.3", optional = true }
reqwest = { version = "0.11", default-features = false, optional = true }
tokio = { version = ">=1.24.2", features = ["rt-multi-thread", "time"] }
backoff = { version = "0.4", features = ["tokio"], optional = true }
governor = { version = "0.5", optional = true }
tempfile = { version = "3", optional = true }
sanitise-file-name = { version = "1", optional = true }
ac-ffmpeg = { version = "0.18", optional = true }
[dev-dependencies]
env_logger = "0.10"
ffprobe = "0.3"
sha2 = "0.10"
hex-literal = "0.4"
colored = "2"
indicatif = "0.17"
clap = "4"
tokio = { version = ">=1.24.2", features = ["rt-multi-thread", "time", "macros"] }
anyhow = "1.0"
roxmltree = "0.18"
[features]
default = ["fetch", "native-tls", "compression", "socks", "scte35"]
fetch = ["url", "data-url", "reqwest", "backoff", "governor", "tempfile", "sanitise-file-name"]
libav = ["ac-ffmpeg"]
scte35 = []
compression = ["reqwest/gzip"]
socks = ["reqwest/socks"]
native-tls = ["reqwest/native-tls"]
rustls-tls = ["reqwest/rustls-tls"]
trust-dns = ["reqwest/trust-dns"]
[target.'cfg(unix)'.dependencies]
xattr = "1.0"