Av1an/av1an/Cargo.toml

49 lines
1.1 KiB
TOML
Raw Normal View History

2021-06-03 08:43:50 +00:00
[package]
2022-12-19 16:26:16 +00:00
name = "av1an"
2022-12-19 16:23:36 +00:00
version = "0.4.0"
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"
rust-version = "1.63"
2022-04-10 16:46:49 +00:00
edition = "2021"
2022-12-19 16:26:16 +00:00
readme = "../README.md"
2021-06-03 08:43:50 +00:00
[[bin]]
name = "av1an"
path = "src/main.rs"
2021-06-03 08:43:50 +00:00
[dependencies]
atty = "0.2.14"
2023-01-13 11:03:09 +00:00
clap = { version = "4.0.32", features = ["derive"] }
2021-08-30 13:15:26 +00:00
shlex = "1.0.0"
path_abs = "0.5.1"
anyhow = "1.0.42"
2022-12-19 16:23:36 +00:00
av1an-core = { path = "../av1an-core", version = "0.4" }
thiserror = "1.0.30"
2021-10-31 20:20:38 +00:00
once_cell = "1.8.0"
ansi_term = "0.12.1"
[dependencies.flexi_logger]
2021-12-25 03:24:18 +00:00
version = "0.22.0"
default-features = false
2021-12-25 03:24:18 +00:00
features = ["colors", "use_chrono_for_offset"]
[build-dependencies.vergen]
2022-03-12 13:37:29 +00:00
version = "7.0.0"
default-features = false
features = ["git", "build", "rustc", "cargo"]
[dependencies.ffmpeg]
package = "ffmpeg-the-third"
version = "1.2.0"
features = ["serialize"]
[features]
default = []
ffmpeg_static = ["ffmpeg/static", "ffmpeg/build", "av1an-core/ffmpeg_static"]