2021-06-03 08:43:50 +00:00
|
|
|
[package]
|
|
|
|
name = "av1an-cli"
|
2022-01-17 07:16:42 +00:00
|
|
|
version = "0.3.1"
|
2021-08-30 12:53:29 +00:00
|
|
|
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]
|
2022-01-18 23:20:01 +00:00
|
|
|
atty = "0.2.14"
|
2022-01-02 01:55:11 +00:00
|
|
|
clap = { version = "3.0.0", features = ["derive"] }
|
2021-08-30 13:15:26 +00:00
|
|
|
shlex = "1.0.0"
|
|
|
|
path_abs = "0.5.1"
|
|
|
|
anyhow = "1.0.42"
|
2022-01-17 07:16:42 +00:00
|
|
|
av1an-core = { path = "../av1an-core", version = "0.3.1" }
|
2021-10-30 11:49:26 +00:00
|
|
|
thiserror = "1.0.30"
|
2021-10-31 20:20:38 +00:00
|
|
|
once_cell = "1.8.0"
|
2021-11-17 08:57:08 +00:00
|
|
|
ansi_term = "0.12.1"
|
2021-10-30 11:49:26 +00:00
|
|
|
|
2021-11-18 20:06:50 +00:00
|
|
|
[dependencies.flexi_logger]
|
2021-12-25 03:24:18 +00:00
|
|
|
version = "0.22.0"
|
2021-11-18 20:06:50 +00:00
|
|
|
default-features = false
|
2021-12-25 03:24:18 +00:00
|
|
|
features = ["colors", "use_chrono_for_offset"]
|
2021-11-18 20:06:50 +00:00
|
|
|
|
2021-11-17 08:57:08 +00:00
|
|
|
[build-dependencies.vergen]
|
2021-12-25 03:24:18 +00:00
|
|
|
version = "6"
|
2021-11-17 08:57:08 +00:00
|
|
|
default-features = false
|
|
|
|
features = ["git", "build", "rustc", "cargo"]
|
2021-10-13 02:21:55 +00:00
|
|
|
|
2022-02-22 20:17:37 +00:00
|
|
|
[dependencies.ffmpeg]
|
|
|
|
package = "ffmpeg-next"
|
|
|
|
version = "5.0.2"
|
2021-10-13 02:21:55 +00:00
|
|
|
|
|
|
|
[features]
|
2022-02-22 20:17:37 +00:00
|
|
|
ffmpeg_static = ["ffmpeg/static", "ffmpeg/build"]
|