[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
features = ["process"]
optional = true
version = "1.0"
[dependencies.tracing]
optional = true
version = "0.1"
[dependencies.which]
version = "4.4"
[features]
default = []
tokio = ["dep:tokio"]
tracing = ["dep:tracing"]
[lib]
name = "ffmpeg_light"
path = "src/lib.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["multimedia", "api-bindings"]
description = "A small Rust crate that wraps a few common FFmpeg tasks"
documentation = "https://docs.rs/ffmpeg-light"
edition = "2021"
keywords = ["ffmpeg", "video", "audio", "transcode"]
license = "Apache-2.0"
name = "ffmpeg-light"
readme = "README.md"
repository = "https://github.com/M1tsumi/ffmpeg-light"
rust-version = "1.70"
version = "0.2.0"
[[test]]
name = "test_audio_filters"
path = "tests/test_audio_filters.rs"
[[test]]
name = "test_builder_composition"
path = "tests/test_builder_composition.rs"
[[test]]
name = "test_error_handling"
path = "tests/test_error_handling.rs"
[[test]]
name = "test_video_filters"
path = "tests/test_video_filters.rs"