-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
executable file
·53 lines (47 loc) · 1.68 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
[package]
name = "pssh-box"
description = "Parsing and serialization support for PSSH boxes used in DRM systems"
version = "0.1.10"
authors = ["Eric Marsden <[email protected]>"]
readme = "README.md"
repository = "https://github.com/emarsden/pssh-box-rs/"
license = "MIT"
keywords = ["PSSH", "DRM", "DASH", "streaming", "ContentProtection"]
categories = ["multimedia::video", "parser-implementations"]
publish = true
edition = "2021"
[dependencies]
serde = { version = "1.0.214", features = ["derive"] }
serde_path_to_error = "0.1.16"
serde_with = { version = "3.11.0", features = ["base64"] }
serde-xml-rs = "0.6.0"
serde_json = "1.0.132"
zerocopy = { version = "0.8.9", features = ["derive"] }
quick-xml = { version = "0.37.0", features = ["serialize", "overlapped-lists", "serde-types"] }
prost = { version = "0.13.3", features = ["prost-derive"] }
prost-types = "0.13.3"
bytes = "1.8.0"
byteorder = "1.5.0"
hex = "0.4.3"
hex-literal = "0.4.1"
hxdmp = "0.2.1"
bstr = "1.10.0"
num_enum = "0.7.3"
base64 = "0.22.1"
tracing = { version = "0.1.40", features = ["attributes"] }
anyhow = "1.0.93"
[dev-dependencies]
clap = { version = "=4.4.18", features = ["cargo", "unicode", "wrap_help"] }
reqwest = { version = "0.12.9", features = ["blocking"] }
tokio = { version = "1.41.0", features = ["rt-multi-thread", "time", "macros"] }
tracing-subscriber = { version = "0.3", features = ["env-filter", "time"] }
test-log = { version = "0.2.16", features = ["trace"] }
pretty_assertions = "1.4.1"
[features]
vendored-protoc = ["dep:protobuf-src"]
[build-dependencies]
prost-build = { version = "0.13.3" }
protobuf-src = { version = "2.1.0", optional = true }
[profile.release]
lto = true
opt-level = 's'