mirror of
https://github.com/JonasunderscoreJones/dayz-linux-gui-launcher.git
synced 2025-10-22 21:39:19 +02:00
first "working" result
still missing major features and full of bugs but can launch DayZ
This commit is contained in:
parent
d526f793c4
commit
6a173d7f24
4 changed files with 3318 additions and 0 deletions
19
Cargo.toml
Normal file
19
Cargo.toml
Normal 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"
|
Loading…
Add table
Add a link
Reference in a new issue