[[bin]]
name = "ffmpeg-sidecar"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0.79"
[dependencies.reqwest]
features = ["blocking"]
optional = true
version = "0.12.8"
[[example]]
name = "download_ffmpeg"
path = "examples/download_ffmpeg.rs"
[[example]]
name = "ffplay_preview"
path = "examples/ffplay_preview.rs"
[[example]]
name = "ffprobe"
path = "examples/ffprobe.rs"
[[example]]
name = "h265_transcode"
path = "examples/h265_transcode.rs"
[[example]]
name = "hello_world"
path = "examples/hello_world.rs"
[[example]]
name = "metadata"
path = "examples/metadata.rs"
[[example]]
name = "named_pipes"
path = "examples/named_pipes.rs"
[[example]]
name = "progress"
path = "examples/progress.rs"
[[example]]
name = "sockets"
path = "examples/sockets.rs"
[[example]]
name = "trigger"
path = "examples/trigger.rs"
[features]
default = ["download_ffmpeg"]
download_ffmpeg = ["dep:reqwest", "dep:tar", "dep:xz2", "dep:zip"]
named_pipes = ["dep:winapi", "dep:nix"]
[lib]
crate-type = ["lib"]
name = "ffmpeg_sidecar"
path = "src/lib.rs"
[package]
authors = ["Nathan Babcock <nathan.r.babcock@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
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"
version = "2.0.0"
[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"