universal-android-debloater.../Cargo.toml

38 lines
No EOL
1 KiB
TOML

cargo-features = ["strip"] # nightly
[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://gitlab.com/W1nst0n/universal-android-debloater-rs"
repository = "https://gitlab.com/W1nst0n/universal-android-debloater-rs"
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"