mirror of
https://github.com/0x192/universal-android-debloater.git
synced 2026-04-28 03:39:38 +00:00
34 lines
No EOL
857 B
TOML
34 lines
No EOL
857 B
TOML
[package]
|
|
name = "uad_gui"
|
|
description = "A cross-platform GUI debloater for android devices"
|
|
version = "0.4.0"
|
|
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"]
|
|
wgpu = [] # iced/wgpu is default
|
|
glow = ["iced/glow"] # OpenGL support
|
|
|
|
[dependencies]
|
|
iced = { git = "https://github.com/hecrj/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"
|
|
|
|
[profile.release]
|
|
opt-level = "s"
|
|
lto = true
|
|
strip = "symbols" |