dayz-linux-gui-launcher/Cargo.toml
Jonas_Jones 6a173d7f24 first "working" result
still missing major features and full of bugs but can launch DayZ
2023-03-04 03:37:43 +01:00

19 lines
No EOL
668 B
TOML

[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"