i2pd-launch 0.2.0

Launches i2pd with clean state
[package]
name = "i2pd-launch"
version = "0.2.0"
description = "Launches i2pd with clean state"

edition = "2021"
rust-version = "1.61.0"
# main() -> ExitCode needs 1.61

license = "Unlicense OR CC0-1.0"

homepage = "https://gitlab.com/hsn10/i2pd-launch"
repository = "https://gitlab.com/hsn10/i2pd-launch.git"

[dependencies]
dirs-sys = "0.4.1"
windows-sys = { version = "0.48", features = ["Win32_UI_Shell"] }

[package.metadata.clippy]
warn = [ "all", "clippy::pedantic" ]

[profile.release]
lto = true
codegen-units = 1
panic = 'abort'
strip = 'symbols'
opt-level = 'z'  # Optimize for size
incremental = false
debug = false