2021-05-16 07:33:25 +00:00
|
|
|
[package]
|
|
|
|
name = "av1an-core"
|
2021-05-23 12:21:07 +00:00
|
|
|
version = "0.1.2"
|
2021-05-16 07:33:25 +00:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# 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"
|
2021-07-15 02:14:33 +00:00
|
|
|
av-ivf = { git = "https://github.com/rust-av/ivf-rs", rev="031aab76d1fc70a4b8518dc2ef5c3f4f1d839721" }
|
2021-05-16 07:33:25 +00:00
|
|
|
num_cpus = "1.13.0"
|
2021-07-25 07:31:54 +00:00
|
|
|
anyhow = "1.0.42"
|
2021-05-28 20:16:17 +00:00
|
|
|
serde_json = "1.0"
|
2021-07-07 22:16:42 +00:00
|
|
|
serde = { version="1.0", features=["derive"] }
|
2021-07-12 03:08:37 +00:00
|
|
|
sysinfo = "0.19.1"
|
2021-07-07 22:16:42 +00:00
|
|
|
vapoursynth = { version="0.3.0", features=["vsscript-functions", "vapoursynth-functions"] }
|
2021-05-16 07:33:25 +00:00
|
|
|
clap = "2.33.3"
|
|
|
|
num-rational = "0.4.0"
|
|
|
|
failure = "0.1.8"
|
|
|
|
regex = "1.5.4"
|
2021-07-05 11:18:19 +00:00
|
|
|
plotters = "0.3.1"
|
2021-07-07 14:01:34 +00:00
|
|
|
splines = "4.0.0"
|
2021-07-19 01:55:03 +00:00
|
|
|
indicatif = { git = "https://github.com/mitsuhiko/indicatif", branch = "main" }
|
2021-07-07 23:50:43 +00:00
|
|
|
once_cell = "1.8.0"
|
|
|
|
chrono = "0.4.19"
|
2021-07-18 22:52:05 +00:00
|
|
|
strum = { version = "0.21", features = ["derive"] }
|
|
|
|
itertools = "0.10.1"
|
2021-07-20 02:05:18 +00:00
|
|
|
parking_lot = "0.11.1"
|
2021-07-25 07:31:54 +00:00
|
|
|
av1an-scene-detection = { path="../av1an-scene-detection" }
|
|
|
|
which = "4.1.0"
|
|
|
|
strsim = "0.10.0"
|
|
|
|
crossbeam-channel = "0.5.1"
|
|
|
|
crossbeam-utils = "0.8.5"
|
|
|
|
flexi_logger = "0.18.0"
|
|
|
|
textwrap = "0.14.2"
|
|
|
|
path_abs = "0.5.1"
|
|
|
|
|
|
|
|
[dependencies.tokio]
|
|
|
|
version = "1"
|
|
|
|
features = ["rt", "process", "io-util"]
|
Refactor: fix chunk restarting, progress bar, and potential race condition (#316)
`DoneJson` is now a concurrent data structure, via `DashMap` and atomics
in the standard library. This should help avoid any potential race
conditions involved with one thread reading `done.json` while another
thread writes to it. Now, we only write to `done.json`, so any failure
from parsing the json while encoding is impossible.
The audio encoding is now done on a separate thread, and it is not
assumed that the audio encoding was finished if the `--resume` flag was
specified, which is now kept track of within `done.json`.
The initialization of the progress bar(s) now does not occur if the
corresponding initialization functions were not called, and the
functions to update the progress bar(s) are a NO-OP if it was not
initialized, rather than implicitly initializing it through the use of
the `Lazy` type from `once_cell`.
Additionally, all 3 concatenation functions now reside in the `concat` module.
2021-07-26 18:01:52 +00:00
|
|
|
|
|
|
|
[dependencies.dashmap]
|
|
|
|
version = "4.0.2"
|
|
|
|
features = ["serde"]
|