2024-05-08 10:50:54 +02:00
|
|
|
[package]
|
2024-10-12 20:40:52 +02:00
|
|
|
name = "servicepoint-simulator"
|
2024-05-08 10:50:54 +02:00
|
|
|
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
|
|
|
# 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"] }
|
2024-11-09 18:53:11 +01:00
|
|
|
# for drawing pixels onto the surface of the window
|
|
|
|
pixels = "0.14"
|
|
|
|
# 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"
|
|
|
|
|
|
|
|
[dependencies.servicepoint]
|
|
|
|
version = "0.9.1"
|
|
|
|
features = ["all_compressions"]
|
|
|
|
|
|
|
|
[dependencies.winit]
|
|
|
|
version = "0.30"
|
|
|
|
features = ["rwh_05"]
|
|
|
|
default-features = true
|
|
|
|
|
|
|
|
[dependencies.font-kit]
|
|
|
|
version = "0.14.2"
|
|
|
|
features = ["loader-freetype-default", "source-fontconfig-dlopen"]
|
|
|
|
default-features = false
|