mirror of
https://github.com/master-of-zen/Av1an.git
synced 2024-11-24 18:18:06 +00:00
db5e569f9d
* Adjust verbose progress style for workers * Also add `-y` flag to overwrite output file without confirmation * Update dependencies * Fix compilation on older versions of rustc
88 lines
2.2 KiB
TOML
88 lines
2.2 KiB
TOML
[package]
|
|
name = "av1an-core"
|
|
version = "0.2.0"
|
|
edition = "2018"
|
|
authors = ["Zen <master_of_zen@protonmail.com>"]
|
|
description = """
|
|
Cross-platform command-line AV1 / VP9 / HEVC / H264 encoding framework with per scene quality encoding [Core library]
|
|
"""
|
|
repository = "https://github.com/master-of-zen/Av1an"
|
|
keywords = ["video"]
|
|
categories = ["command-line-utilities"]
|
|
license = "GPL-3.0"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
log = "0.4.14"
|
|
av-format = "0.3.1"
|
|
av-ivf = "0.2.2"
|
|
num_cpus = "1.13.0"
|
|
anyhow = "1.0.42"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
sysinfo = "0.21.0"
|
|
regex = "1.5.4"
|
|
splines = "4.0.0"
|
|
|
|
# the latest git version is currently required since wide_bar
|
|
# with ANSI escape codes is broken on both the stable release
|
|
# and the beta and the fix only exists in the git version
|
|
indicatif = { git = "https://github.com/mitsuhiko/indicatif" }
|
|
|
|
once_cell = "1.8.0"
|
|
chrono = "0.4.19"
|
|
strum = { version = "0.23.0", features = ["derive"] }
|
|
itertools = "0.10.1"
|
|
which = "4.1.0"
|
|
strsim = "0.10.0"
|
|
crossbeam-channel = "0.5.1"
|
|
crossbeam-utils = "0.8.5"
|
|
textwrap = "0.14.2"
|
|
path_abs = "0.5.1"
|
|
av-scenechange = "0.7.2"
|
|
y4m = "0.7.0"
|
|
thiserror = "1.0.30"
|
|
paste = "1.0.5"
|
|
simdutf8 = "0.1.3"
|
|
parking_lot = "0.11.2"
|
|
cfg-if = "1.0.0"
|
|
# TODO: move all of this CLI stuff to av1an-cli
|
|
ansi_term = "0.12.1"
|
|
|
|
# TODO: https://github.com/elast0ny/affinity/issues/2
|
|
# update this when macos support is implemented
|
|
[target.'cfg(any(target_os = "linux", target_os = "windows"))'.dependencies]
|
|
affinity = "0.1.2"
|
|
|
|
[dependencies.smallvec]
|
|
version = "1.7.0"
|
|
default-features = false
|
|
features = ["const_generics", "const_new", "union"]
|
|
|
|
[dependencies.ffmpeg-next]
|
|
version = "4.4.0"
|
|
|
|
[dependencies.plotters]
|
|
version = "0.3.1"
|
|
default-features = false
|
|
features = ["svg_backend", "line_series"]
|
|
|
|
[dependencies.vapoursynth]
|
|
version = "0.3.0"
|
|
features = ["vsscript-functions", "vapoursynth-functions"]
|
|
|
|
[dependencies.tokio]
|
|
version = "1"
|
|
features = ["rt", "process", "io-util"]
|
|
|
|
[dependencies.dashmap]
|
|
version = "4.0.2"
|
|
features = ["serde"]
|
|
|
|
[features]
|
|
ffmpeg_static = ["ffmpeg-next/static", "ffmpeg-next/build"]
|
|
vapoursynth_new_api = [
|
|
"vapoursynth/vapoursynth-api-32",
|
|
"vapoursynth/vsscript-api-31",
|
|
]
|