Av1an/av1an-cli/Cargo.toml

37 lines
855 B
TOML
Raw Normal View History

2021-06-03 08:43:50 +00:00
[package]
name = "av1an-cli"
2021-10-31 20:56:47 +00:00
version = "0.2.1-2"
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"]
2021-08-30 13:04:27 +00:00
license = "GPL-3.0"
2021-06-03 08:43:50 +00:00
edition = "2018"
[dependencies]
structopt = "0.3.22"
2021-08-30 13:15:26 +00:00
shlex = "1.0.0"
ctrlc = "3.1.9"
path_abs = "0.5.1"
anyhow = "1.0.42"
2021-09-11 18:24:58 +00:00
av1an-core = { path = "../av1an-core", version = "0.2.0" }
thiserror = "1.0.30"
2021-10-31 20:20:38 +00:00
once_cell = "1.8.0"
[build-dependencies]
2021-09-11 18:24:58 +00:00
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"]