mpd_info_screen/Cargo.toml

24 lines
627 B
TOML
Raw Normal View History

2021-09-15 07:30:53 +00:00
[package]
name = "mpd_info_screen"
2024-02-28 02:53:21 +00:00
version = "0.4.9"
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"
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]
2023-11-28 03:20:49 +00:00
clap = { version = "4.4", features = ["derive"] }
2022-03-19 13:36:58 +00:00
image = "0.24"
2023-11-26 06:42:04 +00:00
ggez = "0.9.3"
freetype = { version = "0.7", optional = true }
2023-11-28 03:29:35 +00:00
wgpu = "0.16"
[build-dependencies]
2023-11-28 06:00:26 +00:00
bindgen = { version = "0.69", optional = true }
[features]
unicode_support = ["dep:freetype", "dep:bindgen"]