-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
69 lines (64 loc) · 1.81 KB
/
Cargo.toml
File metadata and controls
69 lines (64 loc) · 1.81 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
62
63
64
65
66
67
68
69
[package]
name = "ampterm"
version = "0.1.0"
edition = "2021"
description = "Ampterm"
authors = ["MangoCubes <10383115+MangoCubes@users.noreply.github.com>"]
build = "build.rs"
[profile.release]
strip = "symbols"
lto = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
alsa-sys = "0.3.1"
better-panic = "0.3.0"
bytes = "1.11.0"
clap = { version = "4.5.20", features = [
"derive",
"cargo",
"wrap_help",
"unicode",
"string",
"unstable-styles",
] }
color-eyre = "0.6.3"
config = "0.14.0"
crossterm = { version = "0.28.1", features = ["serde", "event-stream"] }
derive_deref = "1.1.1"
directories = "5.0.1"
futures = "0.3.31"
futures-util = "0.3.31"
human-panic = "2.0.2"
image = "0.25.8"
json5 = "0.4.1"
lazy_static = "1.5.0"
libc = "0.2.161"
md5 = "0.8.0"
mpris-server = "0.9.0"
pretty_assertions = "1.4.1"
rand = "0.9.2"
ratatui = { version = "0.29.0", features = ["serde", "macros"] }
ratatui-image = "8.0.1"
regex = "1.12.2"
reqwest = { version = "0.12.15", features = ["json"] }
rodio = { version = "0.21.1", features = ["symphonia-aac", "symphonia-alac", "symphonia-flac", "symphonia-mp3", "symphonia-vorbis", "symphonia-wav"] }
rusqlite = "0.37.0"
serde = { version = "1.0.211", features = ["derive"] }
serde_json = "1.0.132"
serde_repr = "0.1.20"
signal-hook = "0.3.17"
stream-download = "0.19.1"
strip-ansi-escapes = "0.2.0"
strum = { version = "0.26.3", features = ["derive"] }
tempdir = "0.3.7"
tokio = { version = "1.40.0", features = ["full"] }
tokio-util = "0.7.12"
tracing = "0.1.40"
tracing-error = "0.2.0"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "serde"] }
tui-textarea = "*"
[build-dependencies]
anyhow = "1.0.90"
vergen-gix = { version = "1.0.2", features = ["build", "cargo"] }
[dev-dependencies]
insta = "1.46.0"