[dependencies.anyhow]
version = "1.0.79"
[dependencies.ureq]
optional = true
version = "2.10.1"
[features]
default = ["download_ffmpeg"]
download_ffmpeg = ["dep:ureq", "dep:tar", "dep:xz2", "dep:zip"]
named_pipes = ["dep:winapi", "dep:nix"]
[lib]
crate-type = ["lib"]
[package]
authors = ["Nathan Babcock <nathan.r.babcock@gmail.com>"]
categories = ["multimedia"]
description = "Wrap a standalone FFmpeg binary in an intuitive Iterator interface."
edition = "2021"
keywords = ["ffmpeg", "video"]
license = "MIT"
name = "ffmpeg-sidecar"
readme = "README.md"
repository = "https://github.com/nathanbabcock/ffmpeg-sidecar"
rust-version = "1.79"
version = "2.0.2"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[target.'cfg(not(target_os = "linux"))'.dependencies.zip]
optional = true
version = "2.2.0"
[target.'cfg(target_os = "linux")'.dependencies.tar]
optional = true
version = "0.4.42"
[target.'cfg(target_os = "linux")'.dependencies.xz2]
optional = true
version = "0.1.7"
[target."cfg(unix)".dependencies.nix]
features = ["fs"]
optional = true
version = "0.29.0"
[target."cfg(windows)".dependencies.winapi]
features = ["winbase", "handleapi", "namedpipeapi"]
optional = true
version = "0.3.9"