summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 44cac708a8a8501fde65782b58fcfba2412e86b2 (plain)
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
39
40
41
42
[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 }
futures-util = "0.3.31"
i24 = "2.1.0"
indicatif = { version = "0.17.11", features = [
    "tokio",
    "improved_unicode",
    "futures",
] }
libsql = { version = "0.9.11" }
md-5 = "0.10.6"
metaflac = "0.2.8"
pin-utils = "0.1.0"
tokio = { version = "1.45.1", features = [
    "macros",
    "rt",
    "rt-multi-thread",
    "signal",
] }
tokio-util = "0.7.15"
walkdir = "2.5.0"
symphonia = { git = "https://github.com/sscobici/Symphonia.git", rev = "2213f274c3e7231fbd7b08aa9347049852915b29", default-features = false, features = [
    "flac",
] }
console = { version = "0.15.11", features = ["windows-console-colors"] }