-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
61 lines (58 loc) · 1.67 KB
/
Copy pathCargo.toml
File metadata and controls
61 lines (58 loc) · 1.67 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[package]
name = "helicon"
description = "Command line music organizer based on metadata from MusicBrainz."
authors = ["Jan Holthuis <jan.holthuis@ruhr-uni-bochum.de>"]
readme = "README.md"
repository = "https://github.com/Holzhaus/helicon"
version = "0.2.0"
edition = "2021"
license = "MPL-2.0"
keywords = ["music", "tags", "organize", "musicbrainz", "metadata"]
categories = ["command-line-utilities", "multimedia::audio", ]
exclude = [".*", "assets"]
[dependencies]
clap = { version = "4", features = ["derive"] }
log = "0"
thiserror = "2"
unidecode = "0"
levenshtein = "1"
musicbrainz_rs_nova = { version = "0", features = ["async"] }
tokio = { version = "1", features = ["full"] }
id3 = { version = "1", optional = true }
metaflac = { version = "0", optional = true }
futures = { version = "0", features = ["executor", "thread-pool"] }
hungarian = "1"
chrono = { version = "0", features = [] }
num = "0.4"
toml = "1.1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
xdg = "3.0.0"
sha2 = "0.11.0"
inquire = "0.9.4"
crossterm = "0.29.0"
regex = "1.12.4"
similar = { version = "3.1.1", features = ["unicode"] }
config = { version = "0.15.25", default-features = false, features = ["toml"] }
simplelog = "0.12.2"
unicode-segmentation = "1.13.3"
unicode-width = "0.2.2"
itertools = "0.15.0"
symphonia = { version = "0.6.0", features = ["all-formats", "all-codecs"] }
rusty-chromaprint = "0.3.0"
base64 = "0.22.1"
float_eq = "1"
ebur128 = "0.1"
async-channel = "2.5.0"
num_cpus = "1.17.0"
handlebars = "6.4.2"
tempfile = "3.27.0"
expanduser = "1.2.2"
bitflags = "2.13.0"
[dev-dependencies]
paste = "1"
[features]
default = ["flac", "id3"]
dev = []
flac = ["dep:metaflac"]
id3 = ["dep:id3"]