-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
167 lines (148 loc) · 3.89 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
[package]
name = "rav1e"
version = "0.5.0-alpha"
authors = ["Thomas Daede <[email protected]>"]
edition = "2018"
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-lcmg"
[features]
unstable = []
channel-api = ["crossbeam"]
decode_test = ["aom-sys"]
decode_test_dav1d = ["dav1d-sys"]
binaries = [
"ivf",
"y4m",
"clap",
"scan_fmt",
"fern",
"console",
"av-metrics",
]
default = ["binaries", "asm", "signal_support"]
asm = ["nasm-rs", "cc", "regex"]
signal_support = ["signal-hook"]
dump_ivf = ["ivf"]
quick_test = []
desync_finder = ["backtrace"]
bench = []
check_asm = []
capi = []
tracing = ["rust_hawktracer/profiling_enabled"]
scenechange = []
serialize = ["serde", "toml", "v_frame/serialize", "arrayvec/serde"]
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.
dump_lookahead_data = ["byteorder", "image"]
[dependencies]
arg_enum_proc_macro = "0.3"
bitstream-io = "1"
cfg-if = "1.0"
clap = { version = "2", optional = true, default-features = false, features = ["color"] }
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.3.4", optional = true }
aom-sys = { version = "0.3.0", optional = true }
scan_fmt = { version = "0.2.3", optional = true, default-features = false }
ivf = { version = "0.1", path = "ivf/", optional = true }
v_frame = { version = "0.2.1", path = "v_frame/" }
av-metrics = { version = "0.6.2", optional = true, default-features = false }
rayon = "1.0"
crossbeam = { version = "0.8", optional = true }
toml = { version = "0.5", optional = true }
arrayvec = "0.7"
thiserror = "1.0"
byteorder = { version = "1.3.2", optional = true }
log = "0.4"
console = { version = "0.14", optional = true }
fern = { version = "0.6", optional = true }
itertools = "0.10"
simd_helpers = "0.1"
wasm-bindgen = { version = "0.2.63", optional = true }
rust_hawktracer = "0.7.0"
[dependencies.image]
version = "0.23"
optional = true
default-features = false
features = ["png"]
[build-dependencies]
cc = { version = "1.0", optional = true, features = ["parallel"] }
# Vendored to remove the dependency on `failure`,
# which takes a long time to build.
vergen = { version = "3", path = "crates/vergen" }
rustc_version = "0.3"
regex = { version = "1", optional = true }
[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 = "1.0"
criterion = "0.3"
pretty_assertions = "0.7"
interpolate_name = "0.2.2"
rand = "0.8"
rand_chacha = "0.3"
semver = "0.11"
[target.'cfg(fuzzing)'.dependencies]
arbitrary = "0.4"
interpolate_name = "0.2.2"
libfuzzer-sys = "0.3"
rand = "0.8"
rand_chacha = "0.3"
[[bin]]
name = "rav1e-lcmg"
path = "src/bin/rav1e.rs"
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"
[profile.bench]
incremental = true
[workspace]
members = [".", "ivf", "v_frame"]
[package.metadata.docs.rs]
no-default-features = true
[patch.crates-io]
v_frame = { path = "v_frame" }