first "working" result

still missing major features and full of bugs but can launch DayZ
This commit is contained in:
Jonas_Jones 2023-03-04 03:37:43 +01:00
parent d526f793c4
commit 6a173d7f24
4 changed files with 3318 additions and 0 deletions

19
Cargo.toml Normal file
View file

@ -0,0 +1,19 @@
[package]
name = "dayz-linux-gui-launcher"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
egui = "0.21.0"
eframe = { version = "0.21.0", default-features = false, features = [
"accesskit", # Make egui comptaible with screen readers. NOTE: adds a lot of dependencies.
"default_fonts", # Embed the default egui fonts.
"glow", # Use the glow rendering backend. Alternative: "wgpu".
"persistence", # Enable restoring app state when restarting the app.
] }
tracing-subscriber = "0.3.16"
dialog = "0.3.0"
directories = "4.0.1"
toml = "0.7.2"