Av1an/av1an-cli/Cargo.toml
redzic e2451684b8
Refactor: Better ffmpeg pipe handling + more info in --version (#389)
* Refactor: Better ffmpeg pipe handling + more info in --version

* Update dependencies
* Better documentation in `--help`
* Include git commit hash and more info in `--version`
* Add `-k` as shorthand for `--keep`
* Do not pass `ffmpeg_pipe` around everywhere
* Use macro to generate encoder bit depth functions
* Fix documentation in README

* Fix some clippy warnings
2021-10-30 14:49:26 +03:00

30 lines
822 B
TOML

[package]
name = "av1an-cli"
version = "0.1.1"
authors = ["Zen <master_of_zen@protonmail.com>"]
description = """
Cross-platform command-line AV1 / VP9 / HEVC / H264 encoding framework with per scene quality encoding [Command line library]
"""
repository = "https://github.com/master-of-zen/Av1an"
keywords = ["video"]
categories = ["command-line-utilities"]
license = "GPL-3.0"
edition = "2018"
[dependencies]
structopt = "0.3.22"
shlex = "1.0.0"
ctrlc = "3.1.9"
path_abs = "0.5.1"
anyhow = "1.0.42"
av1an-core = { path = "../av1an-core", version = "0.1.0" }
thiserror = "1.0.30"
[build-dependencies]
vergen = { version = "5", default-features = false, features = ["git", "build", "rustc", "cargo"] }
[dependencies.ffmpeg-next]
version = "4.4.0"
[features]
ffmpeg_static = ["ffmpeg-next/static", "ffmpeg-next/build"]