forked from xiph/rav1e
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
192 lines (172 loc) · 4.6 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
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
[package]
name = "rav1e"
version = "0.6.1"
authors = ["Thomas Daede <tdaede@xiph.org>"]
edition = "2021"
rust-version = "1.60.0"
build = "build.rs"
include = [
"/Cargo.toml",
"/LICENSE",
"/PATENTS",
"/README.md",
"/build.rs",
"/cbindgen.toml",
"/src/**",
]
license = "BSD-2-Clause"
description = "The fastest and safest AV1 encoder"
readme = "README.md"
repository = "https://github.com/xiph/rav1e/"
autobenches = false
autobins = false
default-run = "rav1e"
[features]
unstable = []
channel-api = ["crossbeam"]
decode_test = ["aom-sys"]
decode_test_dav1d = ["dav1d-sys"]
binaries = [
"ivf",
"y4m",
"clap",
"clap_complete",
"scan_fmt",
"fern",
"console",
"av-metrics",
"nom",
]
default = ["binaries", "asm", "threading", "signal_support", "git_version"]
git_version = ["built/git2"]
asm = ["nasm-rs", "cc"]
threading = ["rayon/threads"]
signal_support = ["signal-hook"]
dump_ivf = ["ivf"]
quick_test = []
desync_finder = ["backtrace"]
bench = []
check_asm = []
capi = ["scan_fmt"]
tracing = ["rust_hawktracer/profiling_enabled"]
scenechange = []
serialize = ["serde", "toml", "v_frame/serialize", "serde-big-array"]
wasm = ["wasm-bindgen"]
# Enables debug dumping of lookahead computation results, specifically:
# - i-qres.png: quarter-resolution luma planes,
# - i-hres.png: half-resolution luma planes,
# - i-mvs.bin: motion vectors,
# - i-imps.bin: block importances,
# - i-activity_scales.bin: spatial scales,
# - i-distortion_scales.bin: temporal scales,
# - i-spatiotemporal_scales.bin,
# - i-thresholds.bin: segmentation thresholds.
dump_lookahead_data = ["byteorder", "image"]
[dependencies]
arg_enum_proc_macro = "0.3"
bitstream-io = "1"
cfg-if = "1.0"
clap = { version = "4.0.18", optional = true, default-features = false, features = [
"color",
"std",
"wrap_help",
"derive",
] }
clap_complete = { version = "4.0.3", optional = true }
libc = "0.2"
y4m = { version = "0.7", optional = true }
backtrace = { version = "0.3", optional = true }
num-traits = "0.2"
num-derive = "0.3"
paste = "1.0"
noop_proc_macro = "0.3.0"
serde = { version = "1.0", features = ["derive"], optional = true }
dav1d-sys = { version = "0.7.0", optional = true }
aom-sys = { version = "0.3.2", optional = true }
scan_fmt = { version = "0.2.3", optional = true, default-features = false }
ivf = { version = "0.1", path = "ivf/", optional = true }
v_frame = "0.3.3"
av-metrics = { version = "0.9.0", optional = true, default-features = false }
rayon = { package = "maybe-rayon", version = "0.1", default-features = false }
crossbeam = { version = "0.8", optional = true }
toml = { version = "0.7", optional = true }
arrayvec = "0.7"
thiserror = "1.0"
byteorder = { version = "1.3.2", optional = true }
log = "0.4"
console = { version = "0.15", optional = true }
fern = { version = "0.6", optional = true }
itertools = "0.10"
simd_helpers = "0.1"
wasm-bindgen = { version = "0.2.84", optional = true }
rust_hawktracer = "0.7.0"
const_fn_assert = "0.1.2"
nom = { version = "7.1.3", optional = true }
new_debug_unreachable = "1.0.4"
once_cell = "1.17.1"
av1-grain = { version = "0.2.0", features = ["serialize"] }
serde-big-array = { version = "0.5.0", optional = true }
[dependencies.image]
version = "0.24.3"
optional = true
default-features = false
features = ["png"]
[build-dependencies]
cc = { version = "1.0", optional = true, features = ["parallel"] }
rustc_version = "0.4"
built = { version = "0.6.0", features = [] }
[build-dependencies.nasm-rs]
version = "0.2"
optional = true
features = ["parallel"]
[target.'cfg(unix)'.dependencies]
signal-hook = { version = "0.3", optional = true }
[dev-dependencies]
assert_cmd = "2.0"
criterion = "0.4"
pretty_assertions = "1.3.0"
interpolate_name = "0.2.2"
nom = "7.1.3"
quickcheck = "1.0"
quickcheck_macros = "1.0"
rand = "0.8"
rand_chacha = "0.3"
semver = "1.0"
[target.'cfg(fuzzing)'.dependencies]
arbitrary = "1.2"
interpolate_name = "0.2.2"
libfuzzer-sys = "0.4.6"
rand = "0.8"
rand_chacha = "0.3"
[target.'cfg(any(decode_test, decode_test_dav1d))'.dependencies]
system-deps = "6"
[[bin]]
name = "rav1e"
required-features = ["binaries"]
bench = false
[[bin]]
name = "rav1e-ch"
required-features = ["binaries", "channel-api", "unstable"]
bench = false
[lib]
bench = false
[[bench]]
name = "bench"
path = "benches/bench.rs"
harness = false
[profile.dev]
opt-level = 1
[profile.release]
debug = true
incremental = true
lto = "thin"
# windows-gnu should use it until rust-lang/rust#98302 is not fixed
[profile.release-no-lto]
inherits = "release"
lto = "off"
[profile.bench]
incremental = true
[workspace]
members = [".", "ivf"]
[package.metadata.docs.rs]
no-default-features = true