mirror of
https://github.com/Universal-Debloater-Alliance/universal-android-debloater-next-generation.git
synced 2026-08-26 15:34:19 +02:00
36 lines
No EOL
1,010 B
TOML
36 lines
No EOL
1,010 B
TOML
[package]
|
|
name = "uad_gui"
|
|
description = "A cross-platform GUI debloater for android devices"
|
|
version = "0.3.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
|
|
#legacy = ["iced/glow_OpenGL2ES"] # old shaders for very old hardware (see #49)
|
|
|
|
[dependencies]
|
|
iced = { git = "https://github.com/hecrj/iced.git" }
|
|
#iced = { git = "https://github.com/0x192/iced.git", branch = "legacy" }
|
|
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" |