mirror of
https://github.com/kaesaecracker/servicepoint-simulator.git
synced 2025-01-18 10:30:14 +01:00
25 lines
748 B
TOML
25 lines
748 B
TOML
[package]
|
|
name = "pixel-receiver-rs"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[dependencies]
|
|
# packet parsing
|
|
servicepoint = { version = "0.7.0", features = ["all_compressions"] }
|
|
|
|
# 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
|
|
log = "0.4"
|
|
env_logger = "0.11"
|
|
clap = { version = "4.5", features = ["derive"] }
|