25 lines
642 B
TOML
25 lines
642 B
TOML
[package]
|
|
name = "hinoirisetr"
|
|
version = "0.2.0"
|
|
authors = ["Vladimir Rubin <vavakado@proton.me>"]
|
|
description = "A daemon to dim the screen at night"
|
|
license = "MIT"
|
|
repository = "https://git.vavakado.xyz/vavakado/hinoirisetr"
|
|
readme = "README.md"
|
|
keywords = ["unix", "daemon", "screen", "night"]
|
|
categories = ["command-line-utilities"]
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
libloading = "0.8.6"
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync", "time","io-util","net","signal" ] }
|
|
|
|
[profile.release]
|
|
strip = true
|
|
lto = true
|
|
codegen-units = 1
|
|
opt-level = "s"
|
|
panic = "abort"
|
|
|
|
[profile.release.package."*"]
|
|
opt-level = "z"
|