From d14699846d801bd74ce637d141bac8d3538fe59b Mon Sep 17 00:00:00 2001 From: Himadri Bhattacharjee <107522312+lavafroth@users.noreply.github.com> Date: Thu, 25 Dec 2025 10:04:21 +0530 Subject: [PATCH] deps: remove web a11y features since we are not targeting web --- Cargo.lock | 3 ++- Cargo.toml | 7 ++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5d63025..a18b356 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5324,7 +5324,7 @@ dependencies = [ [[package]] name = "zilch" -version = "0.1.0" +version = "0.2.0" dependencies = [ "adb_client", "eframe", @@ -5332,6 +5332,7 @@ dependencies = [ "egui_alignments", "egui_extras", "env_logger", + "log", "phf 0.13.1", "rfd", "rusb", diff --git a/Cargo.toml b/Cargo.toml index 18458a5..3f7be76 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,13 +3,18 @@ name = "zilch" version = "0.2.0" edition = "2024" +[profile.release] +strip = true + [dependencies] adb_client = {version = "2.1.18", git = "https://github.com/lavafroth/adb_client", branch = "with-read-timeout"} -eframe = "0.33.2" +# TODO: drop x11 support when wayland adoption increases. Will decrease binary size +eframe = {version = "0.33.2", features = ["accesskit", "default_fonts", "glow", "wayland", "x11"] } egui = "0.33.2" egui_alignments = "0.3.6" egui_extras = "0.33.2" env_logger = "0.11.8" +log = "0.4.29" phf = { version = "0.13.1", features = ["macros"] } rfd = { version = "0.16.0", features = ["ashpd", "pollster", "urlencoding", "wayland", "xdg-portal"] } rusb = "0.9.4"