[package]
edition = "2024"
rust-version = "1.93.0"
name = "ff-decode"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Video and audio decoding - the Rust way"
readme = "README.md"
keywords = [
"video",
"audio",
"ffmpeg",
"media",
"decode",
]
categories = [
"multimedia::video",
"multimedia::audio",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/itsakeyfut/avio"
resolver = "2"
[features]
default = ["hwaccel"]
hwaccel = []
[lib]
name = "ff_decode"
path = "src/lib.rs"
[[example]]
name = "check_hw_accel"
path = "examples/check_hw_accel.rs"
[[test]]
name = "audio_decoder_tests"
path = "tests/audio_decoder_tests.rs"
[[test]]
name = "hardware_accel_tests"
path = "tests/hardware_accel_tests.rs"
[[test]]
name = "memory_usage_tests"
path = "tests/memory_usage_tests.rs"
[[test]]
name = "performance_validation_tests"
path = "tests/performance_validation_tests.rs"
[[test]]
name = "thumbnail_tests"
path = "tests/thumbnail_tests.rs"
[[test]]
name = "video_decoder_tests"
path = "tests/video_decoder_tests.rs"
[[test]]
name = "video_format_tests"
path = "tests/video_format_tests.rs"
[[test]]
name = "video_range_tests"
path = "tests/video_range_tests.rs"
[[test]]
name = "video_seeking_tests"
path = "tests/video_seeking_tests.rs"
[[bench]]
name = "decode_bench"
path = "benches/decode_bench.rs"
harness = false
[dependencies.ff-common]
version = "0.1.2"
[dependencies.ff-format]
version = "0.1.2"
[dependencies.ff-sys]
version = "0.1.2"
[dependencies.log]
version = "0.4.29"
[dependencies.thiserror]
version = "2.0.17"
[dev-dependencies.criterion]
version = "0.8.1"
[target."cfg(windows)".dev-dependencies.winapi]
version = "0.3.9"
features = [
"processthreadsapi",
"psapi",
]
[lints.clippy]
expect_used = "warn"
if_not_else = "allow"
match_same_arms = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
panic = "warn"
redundant_closure_for_method_calls = "allow"
similar_names = "allow"
too_many_lines = "allow"
uninlined_format_args = "allow"
unwrap_used = "warn"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "warn"
[lints.rust.rust_2024_compatibility]
level = "warn"
priority = -1