-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (41 loc) · 983 Bytes
/
Cargo.toml
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
[package]
name = "ramp"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# general
itertools = "0.12.0"
log = "0.4.19"
simplelog = "0.12.1"
serde = { version = "1.0.181", features = ["derive", "rc"] }
serde_json = { version = "1.0.104" }
walkdir = "2.3.3"
tempfile = "3.7.1"
bitcode = { version = "0.5.0", features = ["serde"] }
anyhow = "1.0.75"
dirs = "5.0.1"
ordered-float = { version = "4.1.1", features = ["serde"] }
# tui
crossterm = "0.27.0"
ratatui = { version = "0.24.0", features = ["all-widgets"] }
image = { version = "0.24.7", default-features = false, features = [
"png",
"jpeg",
] }
# audio
cpal = "0.15.2"
symphonia = { version = "0.5.3", features = [
"mp3",
"all-formats",
"mkv",
"ogg",
"wav",
"aac",
"alac",
"flac",
"all-codecs",
], default-features = false }
souvlaki = "0.6.1"
replaygain = "1.0.1"
strsim = "0.10.0"