You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
171 lines
3.1 KiB
171 lines
3.1 KiB
--- rav1e-0.7.1/Cargo.toml 1970-01-01T00:00:01+00:00 |
|
+++ rav1e-0.7.1/Cargo.toml 2024-10-02T17:37:50.466711+00:00 |
|
@@ -30,8 +30,11 @@ |
|
default-run = "rav1e" |
|
description = "The fastest and safest AV1 encoder" |
|
readme = "README.md" |
|
-license = "BSD-2-Clause" |
|
+license = "BSD-2-Clause AND ISC" |
|
repository = "https://github.com/xiph/rav1e/" |
|
+ |
|
+[package.metadata.capi.library] |
|
+version_suffix_components = 1 |
|
|
|
[package.metadata.docs.rs] |
|
no-default-features = true |
|
@@ -72,16 +75,6 @@ |
|
"unstable", |
|
] |
|
|
|
-[[bench]] |
|
-name = "bench" |
|
-path = "benches/bench.rs" |
|
-harness = false |
|
-required-features = ["bench"] |
|
- |
|
-[dependencies.aom-sys] |
|
-version = "0.3.3" |
|
-optional = true |
|
- |
|
[dependencies.arg_enum_proc_macro] |
|
version = "0.3.4" |
|
|
|
@@ -102,10 +95,6 @@ |
|
|
|
[dependencies.bitstream-io] |
|
version = "2" |
|
- |
|
-[dependencies.byteorder] |
|
-version = "1.5.0" |
|
-optional = true |
|
|
|
[dependencies.cfg-if] |
|
version = "1.0" |
|
@@ -133,23 +122,12 @@ |
|
version = "0.8" |
|
optional = true |
|
|
|
-[dependencies.dav1d-sys] |
|
-version = "0.6.0" |
|
-optional = true |
|
-package = "libdav1d-sys" |
|
- |
|
[dependencies.fern] |
|
version = "0.6" |
|
optional = true |
|
|
|
-[dependencies.image] |
|
-version = "0.24.7" |
|
-features = ["png"] |
|
-optional = true |
|
-default-features = false |
|
- |
|
[dependencies.itertools] |
|
-version = "0.12" |
|
+version = "0.13" |
|
|
|
[dependencies.ivf] |
|
version = "0.1" |
|
@@ -183,9 +161,6 @@ |
|
[dependencies.paste] |
|
version = "1.0" |
|
|
|
-[dependencies.profiling] |
|
-version = "1" |
|
- |
|
[dependencies.rayon] |
|
version = "0.1" |
|
default-features = false |
|
@@ -215,25 +190,9 @@ |
|
version = "0.8" |
|
optional = true |
|
|
|
-[dependencies.tracing] |
|
-version = "0.1.40" |
|
-optional = true |
|
- |
|
-[dependencies.tracing-chrome] |
|
-version = "0.7.1" |
|
-optional = true |
|
- |
|
-[dependencies.tracing-subscriber] |
|
-version = "0.3.18" |
|
-optional = true |
|
- |
|
[dependencies.v_frame] |
|
version = "0.3.7" |
|
|
|
-[dependencies.wasm-bindgen] |
|
-version = "0.2.89" |
|
-optional = true |
|
- |
|
[dependencies.y4m] |
|
version = "0.8" |
|
optional = true |
|
@@ -241,9 +200,6 @@ |
|
[dev-dependencies.assert_cmd] |
|
version = "2.0" |
|
|
|
-[dev-dependencies.criterion] |
|
-version = "0.5" |
|
- |
|
[dev-dependencies.interpolate_name] |
|
version = "0.2.4" |
|
|
|
@@ -264,10 +220,6 @@ |
|
|
|
[dev-dependencies.semver] |
|
version = "1.0" |
|
- |
|
-[build-dependencies.built] |
|
-version = "0.7.1" |
|
-features = [] |
|
|
|
[build-dependencies.cc] |
|
version = "1.0" |
|
@@ -284,7 +236,6 @@ |
|
"nasm-rs", |
|
"cc", |
|
] |
|
-bench = [] |
|
binaries = [ |
|
"ivf", |
|
"y4m", |
|
@@ -299,22 +250,14 @@ |
|
capi = ["scan_fmt"] |
|
channel-api = ["crossbeam"] |
|
check_asm = [] |
|
-decode_test = ["aom-sys"] |
|
-decode_test_dav1d = ["dav1d-sys"] |
|
default = [ |
|
"binaries", |
|
"asm", |
|
"threading", |
|
"signal_support", |
|
- "git_version", |
|
] |
|
desync_finder = ["backtrace"] |
|
dump_ivf = ["ivf"] |
|
-dump_lookahead_data = [ |
|
- "byteorder", |
|
- "image", |
|
-] |
|
-git_version = ["built/git2"] |
|
quick_test = [] |
|
scenechange = [] |
|
serialize = [ |
|
@@ -326,14 +269,7 @@ |
|
] |
|
signal_support = ["signal-hook"] |
|
threading = ["rayon/threads"] |
|
-tracing = [ |
|
- "profiling/profile-with-tracing", |
|
- "tracing-subscriber", |
|
- "tracing-chrome", |
|
- "dep:tracing", |
|
-] |
|
unstable = [] |
|
-wasm = ["wasm-bindgen"] |
|
|
|
[target."cfg(unix)".dependencies.signal-hook] |
|
version = "0.3"
|
|
|