update package name, update dependencies

This commit is contained in:
Vinzenz Schroeter 2024-10-12 20:40:52 +02:00
parent 43b096bd69
commit f659bdc5b2
3 changed files with 195 additions and 211 deletions

View file

@ -1,5 +1,5 @@
[package]
name = "pixel-receiver-rs"
name = "servicepoint-simulator"
version = "0.1.0"
edition = "2021"
publish = false
@ -7,14 +7,14 @@ license = "GPL-3.0-or-later"
[dependencies]
# packet parsing
servicepoint = { version = "0.8.0", features = ["all_compressions"] }
servicepoint = { version = "0.9.1", 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
pixels = "0.14" # 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 }
font-kit = { version = "0.14.2", 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"