Files
hyprgui/Cargo.toml
2024-11-02 19:46:43 -04:00

31 lines
646 B
TOML

[package]
name = "hyprgui"
version = "0.1.7"
authors = ["Nyx <nnyyxxxx@protonmail.com>", "Adam Perkowski <adas1per@protonmail.com>"]
license = "GPL-2.0"
description = "GUI for configuring Hyprland!"
repository = "https://github.com/nnyyxxxx/hyprlandgui.git"
readme = "readme.md"
keywords = [
"gui",
"hyprland",
"wayland",
"config",
]
categories = ["gui"]
edition = "2021"
[dependencies]
gtk = { version = "0.9.2", package = "gtk4" }
hyprparser = "0.1.4"
libc = "0.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
[profile.release]
lto = "fat"
codegen-units = 1
panic = "abort"
strip = true
opt-level = 3