-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
34 lines (32 loc) · 1.06 KB
/
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
[package]
name = "mprisence"
description = "A Discord Rich Presence client for MPRIS-compatible media players with support for album art."
version = "0.5.1"
edition = "2021"
authors = ["Phusit Somboonyingsuk"]
readme = "README.md"
homepage = "https://github.com/lazykern/mprisence"
repository = "https://github.com/lazykern/mprisence"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.5.16", features = ["derive"] }
dirs = "5.0.1"
discord-rich-presence = "0.2.3"
env_logger = "0.11.2"
figment = { version = "0.10.14", features = ["toml"] }
handlebars = "5.1.0"
handlebars_misc_helpers = { version = "0.15.0", features = ["string"] }
imgbb = "1.2.1"
lazy_static = "1.4.0"
lofty = "0.18.2"
log = "0.4.20"
mpris = "2.0.1"
reqwest = { version = "0.11.25", features = ["json"] }
serde = { version = "1.0.197", features = ["derive"] }
sha256 = "1.5.0"
strsim = "0.11.0"
tokio = { version = "1.29.0", features = ["macros", "rt-multi-thread"] }
toml = "0.8.10"
url = "2.5.0"
walkdir = "2.3.3"