File: Cargo.toml

package info (click to toggle)
rust-dolby-vision 3.3.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 584 kB
  • sloc: ansic: 246; cpp: 30; makefile: 29
file content (101 lines) | stat: -rw-r--r-- 2,065 bytes parent folder | download
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.79.0"
name = "dolby_vision"
version = "3.3.1"
authors = ["quietvoid"]
build = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Dolby Vision metadata parsing and writing"
readme = "README.md"
license = "MIT"
repository = "https://github.com/quietvoid/dovi_tool/tree/main/dolby_vision"

[package.metadata.capi.header]
name = "rpu_parser"
subdirectory = "libdovi"

[package.metadata.capi.library]
name = "dovi"
rustflags = "-Cpanic=abort"

[package.metadata.capi.pkg_config]
filename = "dovi"
name = "dovi"
strip_include_path_components = 1
subdirectory = false

[package.metadata.docs.rs]
all-features = true

[lib]
name = "dolby_vision"
path = "src/lib.rs"
doctest = false

[dependencies.anyhow]
version = "1.0.86"

[dependencies.bitvec]
version = "1.0.1"

[dependencies.bitvec_helpers]
version = "3.1.5"
features = ["bitstream-io"]
default-features = false

[dependencies.crc]
version = "3.0.1"

[dependencies.libc]
version = "0.2"
optional = true

[dependencies.roxmltree]
version = "0.20.0"
optional = true

[dependencies.serde]
version = "1.0.203"
features = ["derive"]
optional = true

[dependencies.serde_json]
version = "1.0.117"
features = ["preserve_order"]
optional = true

[dependencies.tinyvec]
version = "1.6.0"
features = ["rustc_1_55"]

[dev-dependencies.criterion]
version = "0.5.1"

[features]
capi = ["libc"]
serde = [
    "dep:serde",
    "dep:serde_json",
    "tinyvec/serde",
]
xml = ["roxmltree"]

[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(cargo_c)"]