2021-09-15 07:30:53 +00:00
|
|
|
[package]
|
|
|
|
name = "mpd_info_screen"
|
2022-08-01 05:30:22 +00:00
|
|
|
version = "0.3.3"
|
2021-09-15 07:30:53 +00:00
|
|
|
edition = "2018"
|
2022-02-08 07:37:45 +00:00
|
|
|
description = "Displays info on currently playing music from an MPD daemon"
|
|
|
|
license = "MIT"
|
2022-02-08 07:55:08 +00:00
|
|
|
repository = "https://github.com/Stephen-Seo/mpd_info_screen"
|
2021-09-15 07:30:53 +00:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2021-09-15 09:16:22 +00:00
|
|
|
structopt = "0.3"
|
2022-03-19 13:36:58 +00:00
|
|
|
image = "0.24"
|
2021-12-14 09:30:02 +00:00
|
|
|
ggez = "0.7"
|
2022-07-29 10:23:39 +00:00
|
|
|
freetype = { version = "0.7", optional = true }
|
2022-07-31 10:52:00 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
bindgen = { version = "0.53", optional = true }
|
2022-07-29 10:23:39 +00:00
|
|
|
|
|
|
|
[features]
|
2022-07-31 10:52:00 +00:00
|
|
|
unicode_support = ["dep:freetype", "dep:bindgen"]
|