mirror of
https://github.com/arabianq/rpmi.git
synced 2026-04-27 22:21:22 +00:00
640bd6a537
change project name to egui_rpm_installer
35 lines
835 B
TOML
35 lines
835 B
TOML
[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"
|