forked from lazykern/mprisence
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
68 lines (65 loc) · 1.85 KB
/
Copy pathCargo.toml
File metadata and controls
68 lines (65 loc) · 1.85 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
[package]
name = "mprisence"
version = "1.4.0"
edition = "2021"
authors = ["Phusit Somboonyingsuk"]
readme = "README.md"
homepage = "https://github.com/lazykern/mprisence"
repository = "https://github.com/lazykern/mprisence"
license = "MIT"
description = "A powerful Discord Rich Presence for MPRIS media players"
keywords = ["discord", "mpris", "linux", "media", "rich-presence"]
categories = ["multimedia", "command-line-utilities"]
exclude = [
".github/",
"assets/",
"packaging/",
"dist/",
"*.sh",
]
[dependencies]
clap = { version = "4.5", features = ["derive"] }
dirs = "6.0.0"
env_logger = "0.11.8"
figment = { version = "0.10.19", features = ["toml"] }
handlebars = "6.3.2"
handlebars_misc_helpers = { version = "0.17.0", features = ["string"] }
log = "0.4.28"
mime_guess = "2.0.5"
mpris = "2.0.1"
notify = "8.2.0"
parking_lot = "0.12"
serde = { version = "1.0.219", features = ["derive"] }
smallvec = "1.15"
smol_str = "0.3.4"
thiserror = "2.0.17"
tokio = { version = "1.48.0", features = ["full"] }
toml = "0.9"
url = "2.5.7"
blake3 = "1.8.2"
async-trait = "0.1.89"
reqwest = { version = "0.12.24", features = ["json", "multipart"] }
imgbb = "1.4.0"
serde_json = "1.0"
discord-rich-presence = "1.0.0"
urlencoding = "2.1.3"
futures = "0.3"
base64 = "0.22.1"
lofty = "0.22.3"
semver = "1.0.27"
walkdir = "2.5.0"
interprocess = "2.2.3"
regex = "1"
catbox = "0.8.2"
[dev-dependencies]
[package.metadata.deb]
maintainer = "Phusit Somboonyingsuk <lazykern@gmail.com>"
copyright = "2025, Phusit Somboonyingsuk"
license-file = ["LICENSE", "0"]
depends = "libdbus-1-3, libgcc-s1, libc6"
assets = [
["target/release/mprisence", "usr/bin/mprisence", "755"],
["config/config.example.toml", "etc/mprisence/config.example.toml", "644"],
["packaging/deb/mprisence.service", "usr/lib/systemd/user/mprisence.service", "644"]
]
maintainer-scripts = "packaging/deb"