-
Notifications
You must be signed in to change notification settings - Fork 18
/
Cargo.toml
25 lines (24 loc) · 889 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
[package]
name = "mpd-discord-rpc"
version = "1.7.3"
authors = ["Jake Stanger <[email protected]>"]
edition = "2021"
description = "Displays your currently playing song / album / artist from MPD in Discord using Rich Presence."
license = "MIT"
repository = "https://github.com/JakeStanger/mpd-discord-rpc"
readme = "README.md"
keywords = ["mpd", "discord", "rpc", "music", "mopidy"]
[dependencies]
discord-presence = {version = "1.4.0", features = ["activity_type"]}
mpd_client = "1.4.1"
dirs = "5.0.1"
toml = "0.8.19"
regex = "1.11.1"
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
reqwest = { version = "0.12.9", features = ["json"] }
tokio = { version = "1.38.1", features = ["rt-multi-thread"] }
universal-config = { version = "0.5.0", default-features = false, features = ["toml"] }
mpd-utils = "0.2.1"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"