forked from 0x192/universal-android-debloater
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (38 loc) · 1.14 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "uad_gui"
description = "A cross-platform GUI debloater for android devices"
version = "0.4.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", "retry"]
no-self-update = []
[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"
ureq = { version = "*", features = ["json"] }
retry = { version = "^1.0", optional = true }
[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"