[package]
edition = "2024"
rust-version = "1.85"
name = "viser-ffmpeg"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "FFmpeg/FFprobe wrapper for viser"
readme = "README.md"
keywords = [
"ffmpeg",
"ffprobe",
"video",
"encoding",
"transcode",
]
categories = [
"multimedia::video",
"multimedia::encoding",
]
license = "BSD-2-Clause"
repository = "https://github.com/vbasky/viser"
[lib]
name = "viser_ffmpeg"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[lints.clippy]
cast_possible_truncation = "allow"
cast_sign_loss = "allow"
doc_lazy_continuation = "allow"
doc_markdown = "allow"
explicit_counter_loop = "allow"
field_reassign_with_default = "allow"
if_same_then_else = "allow"
manual_checked_ops = "allow"
manual_strip = "allow"
match_like_matches_macro = "allow"
missing_safety_doc = "allow"
needless_range_loop = "allow"
same_item_push = "allow"
type_complexity = "allow"
unusual_byte_groupings = "allow"
unwrap_used = "allow"
vec_init_then_push = "allow"
[lints.rust]
unreachable_pub = "warn"
unused_extern_crates = "warn"
unused_import_braces = "warn"
[lints.rustdoc]
broken_intra_doc_links = "allow"
invalid_html_tags = "allow"