working flake
This commit is contained in:
parent
c23f69ae14
commit
4ddec8eef2
6 changed files with 170 additions and 120 deletions
30
Cargo.toml
30
Cargo.toml
|
@ -6,19 +6,25 @@ publish = false
|
|||
license = "GPL-3.0-or-later"
|
||||
|
||||
[dependencies]
|
||||
# packet parsing
|
||||
servicepoint = { version = "0.9.1", features = ["all_compressions"] }
|
||||
|
||||
# gui
|
||||
winit = { version = "0.30", features = ["rwh_05"] } # for creating a window
|
||||
pixels = "0.14" # for drawing pixels onto the surface of the window
|
||||
|
||||
# font rendering
|
||||
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"
|
||||
|
||||
# basics
|
||||
log = "0.4"
|
||||
env_logger = "0.11"
|
||||
clap = { version = "4.5", features = ["derive"] }
|
||||
# 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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue