universal-android-debloater/Cargo.toml
w1nst0n 5fa6fea353
feat: add an recap modal window (#565)
A modal window will now appear to give you a recap of the selected packages before applying the changes.

A complete overhaul of the way UAD handles package selection was required to implement this feature.
2023-03-18 18:15:31 +00:00

43 lines
No EOL
1.2 KiB
TOML

[package]
name = "uad_gui"
description = "A cross-platform GUI debloater for android devices"
version = "0.5.1"
authors = ["w1nst0n"]
license = "GPL-3.0"
homepage = "https://github.com/0x192/universal-android-debloater"
repository = "https://github.com/0x192/universal-android-debloater"
readme = "README.md"
keywords = ["debloater", "android", "adb", "privacy", "bloatware"]
categories = ["gui"]
edition = "2021"
[features]
default = ["wgpu", "self-update"]
wgpu = [] # iced/wgpu is default
glow = ["iced/glow"] # OpenGL support
self-update = ["flate2", "tar"]
no-self-update = []
[dependencies]
iced = { git = "https://github.com/iced-rs/iced.git" }
iced_native = { git = "https://github.com/iced-rs/iced.git"}
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1.0"
static_init = "^1.0"
fern = { version = "^0", features = ["colored"] }
log = "^0"
chrono = "^0"
regex = "^1.5"
toml = "^0"
dirs = "^4.0"
ureq = { version = "*", features = ["json"] }
retry = { version = "^1.0" }
[target.'cfg(not(target_os = "windows"))'.dependencies]
flate2 = { version = "^1", optional = true }
tar = { version = "^0", optional = true }
[profile.release]
opt-level = "s"
lto = true
strip = "symbols"