-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (44 loc) · 1.33 KB
/
Cargo.toml
File metadata and controls
47 lines (44 loc) · 1.33 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
[package]
name = "tuun"
version = "5.11.2+dev"
edition = "2024"
authors = [ "tox" ]
description = "A simple music player using mpv as a backend"
homepage = "https://github.com/tox-wtf/tuun"
repository = "https://github.com/tox-wtf/tuun.git"
license = "GPL-3.0"
readme = "README.md"
keywords = [
"music",
"player",
]
[profile.release]
opt-level = 3
strip = "symbols"
lto = "thin"
[dependencies]
anyhow = "1.0"
clap = { version = "4.5", features = ["derive"] }
discord-rich-presence = { git = "https://github.com/vionya/discord-rich-presence" }
homedir = { version = "0.3.6", default-features = false }
id3 = { version = "1.16", default-features = false }
once_cell = "1.20"
permitit = "0.1"
rustfm-scrobble = { git = "https://github.com/tox-wtf/rustfm-scrobble" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.43", features = ["full"] }
toml = "1"
tracing = "0.1"
tracing-appender = "0.2"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
treats = "0.0.0"
urlencoding = "2.1"
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
correctness = { level = "deny", priority = 9 }
suspicious = { level = "deny", priority = 8 }
complexity = { level = "deny", priority = 7 }
perf = { level = "deny", priority = 6 }
nursery = { level = "deny", priority = 2 }
unwrap_used = { level = "deny" }