universal-android-debloater/Cargo.toml
w1nst0n 69235a9aa5
chore: update dependencies
- Finally fixed the Dependabot alerts for a CVE not actually impacting UAD
https://rustsec.org/advisories/RUSTSEC-2020-0071
- Fixed new breaking changes from Iced

Note: UAD is not vulnerable to https://rustsec.org/advisories/RUSTSEC-2021-0145.html
2023-04-09 17:27:19 +02:00

43 lines
1.3 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"] }
chrono = { version = "^0.4", default-features = false, features = ["std", "clock"] }
log = "^0.4"
regex = "^1.5"
toml = "^0"
dirs = "^5.0.0"
ureq = { version = "*", features = ["json"] }
retry = { version = "^2.0.0" }
[target.'cfg(not(target_os = "windows"))'.dependencies]
flate2 = { version = "^1", optional = true }
tar = { version = "^0.4", optional = true }
[profile.release]
opt-level = "s"
lto = true
strip = "symbols"