[package] name = "unshell-gui" version = "0.1.0" edition = "2024" authors = ["ASTATIN3"] include = ["LICENSE-APACHE", "LICENSE-MIT", "**/*.rs", "Cargo.toml"] rust-version = "1.88" [lib] crate-type = ["cdylib"] [package.metadata.docs.rs] all-features = true targets = [ # "x86_64-unknown-linux-gnu", "wasm32-unknown-unknown" ] [dependencies] unshell = {path="../"} # log = "0.4.27" chrono = { workspace = true } serde = { workspace = true } serde_json = { workspace = true } reqwest = {version = "0.12.26", features=["json"]} # Stuff for app functionality 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. "default_fonts", # Embed the default egui fonts. "glow", # Use the glow rendering backend. Alternative: "wgpu". "persistence", # Enable restoring app state when restarting the app. "wayland", # To support Linux (and CI) "x11", # To support older Linux distributions (restores one of the default features) ] } egui_extras = "0.33.2" egui_tiles = "0.14.0" egui-async = "0.2.6" # Web Stuff wasm-bindgen-futures = "0.4.50" wasm-bindgen = "0.2.106" web-sys = {version = "0.3.70", features = ['Headers', 'Request', 'RequestInit', 'RequestMode', 'Response', 'Window']} [profile.release] opt-level = 2 # fast and small wasm # lto = true # Optimize all dependencies even in debug builds: [profile.dev.package."*"] opt-level = 2 [patch.crates-io] # If you want to use the bleeding edge version of egui and eframe: # egui = { git = "https://github.com/emilk/egui", branch = "main" } # eframe = { git = "https://github.com/emilk/egui", branch = "main" } # If you fork https://github.com/emilk/egui you can test with: # egui = { path = "../egui/crates/egui" } # eframe = { path = "../egui/crates/eframe" }