Work on payload editor

This commit is contained in:
Michael Mikovsky
2025-11-26 12:48:23 -07:00
parent 0a3e3d9765
commit 3d9332059a
10 changed files with 742 additions and 921 deletions
+6 -3
View File
@@ -3,7 +3,7 @@ name = "unshell-gui"
version = "0.1.0"
edition = "2024"
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
authors = ["ASTATIN3"]
include = ["LICENSE-APACHE", "LICENSE-MIT", "**/*.rs", "Cargo.toml"]
rust-version = "1.88"
@@ -12,9 +12,11 @@ all-features = true
targets = ["x86_64-unknown-linux-gnu", "wasm32-unknown-unknown"]
[dependencies]
unshell-lib = {path="../unshell-lib"}
egui = "0.33.0"
eframe = { version = "0.33.0", default-features = false, features = [
"accesskit", # Make egui compatible with screen readers. NOTE: adds a lot of dependencies.
# "accesskit", # Make egui compatible 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.
@@ -25,10 +27,11 @@ log = "0.4.27"
# You only need serde if you want app persistence:
serde = { version = "1.0.219", features = ["derive"] }
egui_extras = "0.33.2"
# native:
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
env_logger = "0.11.8"
pretty_env_logger = "0.5.0"
# web:
[target.'cfg(target_arch = "wasm32")'.dependencies]