2021-09-15 07:30:53 +00:00
|
|
|
[package]
|
|
|
|
name = "mpd_info_screen"
|
2024-07-22 02:16:00 +00:00
|
|
|
version = "0.4.14"
|
2022-12-11 05:35:35 +00:00
|
|
|
edition = "2021"
|
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"
|
2022-12-06 13:00:09 +00:00
|
|
|
resolver = "2"
|
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]
|
2024-08-04 13:15:51 +00:00
|
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
|
|
image = "0.25"
|
2023-11-26 06:42:04 +00:00
|
|
|
ggez = "0.9.3"
|
2022-07-29 10:23:39 +00:00
|
|
|
freetype = { version = "0.7", optional = true }
|
2024-08-04 13:15:51 +00:00
|
|
|
wgpu-types = "0.16"
|
2022-07-31 10:52:00 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
2023-11-28 06:00:26 +00:00
|
|
|
bindgen = { version = "0.69", 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"]
|