2024-05-08 10:50:54 +02:00
|
|
|
[package]
|
|
|
|
name = "pixel-receiver-rs"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2024-05-09 00:46:03 +02:00
|
|
|
publish = false
|
2024-05-12 01:53:44 +02:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-05-08 10:50:54 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2024-05-12 13:22:40 +02:00
|
|
|
# packet parsing
|
2024-06-26 17:23:41 +02:00
|
|
|
servicepoint = { git = "https://github.com/cccb/servicepoint.git", branch = "fix-brightness" }
|
2024-05-12 13:22:40 +02:00
|
|
|
|
|
|
|
# gui
|
|
|
|
winit = { version = "0.30", features = ["rwh_05"] } # for creating a window
|
|
|
|
pixels = "0.13" # for drawing pixels onto the surface of the window
|
|
|
|
|
|
|
|
# font rendering
|
|
|
|
font-kit = { version = "0.13.0", features = ["loader-freetype-default", "source-fontconfig-dlopen"], default-features = false }
|
|
|
|
# I should not need this as a direct dependency, but then I cannot spell the types needed to use font-kit...
|
|
|
|
pathfinder_geometry = "0.5.1"
|
|
|
|
|
|
|
|
# basics
|
2024-05-09 00:46:03 +02:00
|
|
|
log = "0.4"
|
|
|
|
env_logger = "0.11"
|
2024-05-12 13:22:40 +02:00
|
|
|
clap = { version = "4.5", features = ["derive"] }
|