1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
[package]
name = "flac-reencoder"
version = "0.1.2"
edition = "2024"
repository = "https://github.com/justjakka/reencoder/"
license = "BSD-3-Clause"
authors = ["jakka"]
description = "A tool for keeping your flacs up-to-date"
categories = ["command-line-utilities"]
keywords = ["flac", "audio"]
[dependencies]
anyhow = "1.0.98"
clap = { version = "4.5.40", features = ["cargo", "help", "std"] }
clap_complete = "4.5.54"
directories = "6.0.0"
flac-bound = { version = "0.5.0", features = [
"libflac-noogg",
], default-features = false }
i24 = { version = "2.1.0", features = ["std"] }
indicatif = { version = "0.17.11", features = ["improved_unicode", "futures"] }
libsql = { version = "0.9.11", default-features = false, features = [
"core",
"stream",
] }
md-5 = "0.10.6"
pin-utils = "0.1.0"
walkdir = "2.5.0"
console = { version = "0.15.11", features = ["windows-console-colors"] }
claxon = { git = "https://github.com/justjakka/claxon.git" }
metaflac = "0.2.8"
rayon = "1.10.0"
smol = "2.0.2"
futures-util = "0.3.31"
smol-macros = "0.1.1"
macro_rules_attribute = "0.2.2"
ctrlc = "3.4.7"
easy-parallel = "3.3.1"
|