chore: prepare production rust release
ci / rust (push) Successful in 51s
ci / lint-yaml (push) Successful in 5s
release / linux-amd64 (push) Failing after 29s

This commit is contained in:
2026-07-03 15:45:22 +02:00
parent d1cc207ce4
commit ddf4cc7cc1
52 changed files with 2583 additions and 4077 deletions
+28
View File
@@ -0,0 +1,28 @@
[package]
name = "gosleep-timer"
version = "1.1.1"
edition = "2024"
rust-version = "1.85"
description = "Terminal sleep timer for Linux desktop actions, with YAML config and a Rust TUI"
license = "MIT"
repository = "https://gitea.forust.xyz/forust/gosleep"
readme = "README.md"
keywords = ["timer", "tui", "linux", "desktop", "sleep"]
categories = ["command-line-utilities"]
[[bin]]
name = "gosleep-timer"
path = "src/main.rs"
[dependencies]
anyhow = "1.0"
clap = { version = "4.5", features = ["derive"] }
crossterm = "0.29"
ratatui = "0.29"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
[profile.release]
codegen-units = 1
lto = "thin"
strip = true