mpd_info_screen/Cargo.toml
Stephen Seo 6d400cd7c7 Workaround for album art not drawing bug
ggez (at the time of this commit) latest release has a bug that results
in the album art not drawing. Workaround is to build against a ggez
commit in its "devel" branch.
2023-01-29 16:45:40 +09:00

25 lines
698 B
TOML

[package]
name = "mpd_info_screen"
version = "0.4.0"
edition = "2021"
description = "Displays info on currently playing music from an MPD daemon"
license = "MIT"
repository = "https://github.com/Stephen-Seo/mpd_info_screen"
resolver = "2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
structopt = "0.3"
image = "0.24"
#ggez = "0.8.1"
ggez = { git = "https://github.com/ggez/ggez.git", rev = "f87f078346729737b4691b9618eab3f95d61c8ad" }
freetype = { version = "0.7", optional = true }
wgpu = "0.14"
[build-dependencies]
bindgen = { version = "0.53", optional = true }
[features]
unicode_support = ["dep:freetype", "dep:bindgen"]