deps: remove web a11y features since we are not targeting web

This commit is contained in:
Himadri Bhattacharjee
2025-12-25 10:04:21 +05:30
parent b8cc6e7500
commit d14699846d
2 changed files with 8 additions and 2 deletions

3
Cargo.lock generated
View File

@@ -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",

View File

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