[[bin]]
name = "ffdash"
path = "src/main.rs"
[build-dependencies.serde]
features = ["derive"]
version = "1"
[build-dependencies.toml]
version = "0.8"
[dependencies.anyhow]
version = "1"
[dependencies.chrono]
version = "0.4"
[dependencies.clap]
features = ["derive"]
version = "4"
[dependencies.crossterm]
version = "0.29"
[dependencies.dirs]
version = "5"
[dependencies.libc]
version = "0.2"
[dependencies.rand]
version = "0.8"
[dependencies.ratatui]
version = "0.29"
[dependencies.serde]
features = ["derive"]
version = "1"
[dependencies.serde_json]
version = "1"
[dependencies.shlex]
version = "1.3"
[dependencies.sysinfo]
version = "0.30"
[dependencies.thiserror]
version = "2"
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
[dependencies.tui-checkbox]
version = "0.3"
[dependencies.tui-piechart]
version = "0.2"
[dependencies.tui-textarea]
version = "0.6"
[dependencies.uuid]
features = ["v4", "serde"]
version = "1"
[dependencies.walkdir]
version = "2"
[dependencies.waveformchart]
version = "0.1.0"
[dev-dependencies.anyhow]
version = "1"
[dev-dependencies.insta]
features = ["json", "toml"]
version = "1.40"
[dev-dependencies.proptest]
version = "1.5"
[dev-dependencies.tempfile]
version = "3"
[features]
dev-logging = []
dev-tools = []
[lib]
name = "ffdash"
path = "src/lib.rs"
[package]
authors = ["Ben H <bcherb2@users.noreply.github.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = "build.rs"
categories = ["command-line-utilities", "multimedia::video", "multimedia::encoding"]
description = "FFMPEG video encoder with live dashboard, hardware acceleration, and batch processing"
documentation = "https://github.com/bcherb2/ffdash"
edition = "2024"
homepage = "https://github.com/bcherb2/ffdash"
keywords = ["video", "encoder", "vp9", "av1", "ffmpeg"]
license = "MIT"
name = "ffdash"
readme = "README.md"
repository = "https://github.com/bcherb2/ffdash"
rust-version = "1.85"
version = "0.3.0"
[package.metadata.deb]
assets = [["target/release/ffdash", "usr/bin/", "755"], ["README.md", "usr/share/doc/ffdash/", "644"], ["CONFIG.md", "usr/share/doc/ffdash/", "644"]]
copyright = "2025, Ben H <bcherb2@users.noreply.github.com>"
depends = "ffmpeg (>= 8.0)"
extended-description = "ffdash is a video encoder (VP9, AV1) with a live TUI dashboard, hardware acceleration support (VA-API, QSV, NVENC), and efficient batch processing capabilities. It provides real-time encoding statistics, queue management, and customizable encoding profiles."
license-file = ["LICENSE", "0"]
maintainer = "Ben H <bcherb2@users.noreply.github.com>"
priority = "optional"
section = "video"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "params_proptest"
path = "tests/params_proptest.rs"
[[test]]
name = "params_smoke_tests"
path = "tests/params_smoke_tests.rs"
[[test]]
name = "params_validation"
path = "tests/params_validation.rs"
[[test]]
name = "snapshot_commands"
path = "tests/snapshot_commands.rs"
[[test]]
name = "vaapi_driver_detection"
path = "tests/vaapi_driver_detection.rs"
[[test]]
name = "validation"
path = "tests/validation.rs"