[package]
edition = "2024"
rust-version = "1.93.0"
name = "ff-stream"
version = "0.7.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "HLS and DASH adaptive streaming output for the ff-* crate family"
readme = "README.md"
keywords = [
"video",
"ffmpeg",
"hls",
"dash",
"streaming",
]
categories = [
"multimedia::video",
"multimedia::encoding",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/itsakeyfut/avio"
resolver = "2"
[package.metadata.docs.rs]
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "ff_stream"
path = "src/lib.rs"
[[test]]
name = "abr_ladder_tests"
path = "tests/abr_ladder_tests.rs"
[[test]]
name = "dash_output_tests"
path = "tests/dash_output_tests.rs"
[[test]]
name = "hls_output_tests"
path = "tests/hls_output_tests.rs"
[dependencies.ff-common]
version = "0.7.2"
[dependencies.ff-decode]
version = "0.7.2"
[dependencies.ff-encode]
version = "0.7.2"
[dependencies.ff-format]
version = "0.7.2"
[dependencies.ff-pipeline]
version = "0.7.2"
[dependencies.ff-sys]
version = "0.7.2"
[dependencies.log]
version = "0.4.29"
[dependencies.thiserror]
version = "2.0.17"
[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