initial commit

change project name to egui_rpm_installer
This commit is contained in:
2025-11-17 17:07:24 +03:00
commit 640bd6a537
7 changed files with 3884 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
[package]
name = "egui_rpm_installer"
version = "1.0.0"
edition = "2024"
authors = ["arabianq"]
description = "Simple graphical utility that installs/upgrades/removes .rpm files built with Rust and EGUI."
keywords = ["linux", "rpm", "dnf", "package", "utility"]
homepage = "https://rpmi.arabianq.ru/"
repository = "https://github.com/arabianq/rpmi"
readme = "README.md"
license = "MIT"
[[bin]]
name = "rpmi"
path = "src/main.rs"
[dependencies]
egui = { version = "0.33.2", default-features = false, features = [
"default_fonts",
] }
eframe = { version = "0.33.2", default-features = false, features = [
"default_fonts",
"glow",
"wayland",
"x11",
] }
rpm = { version = "0.18.4", default-features = false, features = [] }
[profile.release]
strip = true
lto = true
codegen-units = 1
opt-level = "z"
panic = "abort"