mirror of
https://codeberg.org/Codeberg/pages-server.git
synced 2025-01-19 08:57:55 +00:00
34 lines
894 B
TOML
34 lines
894 B
TOML
# This file is part of the "lamp" program.
|
|
# Copyright (C) 2022 crapStone
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
[package]
|
|
name = "lamp"
|
|
version = "0.2.2"
|
|
authors = ["crapStone <crapstone01@gmail.com>"]
|
|
license = "GPL-3.0-or-later"
|
|
description = "A Linux backlight utility inspired by acpibacklight"
|
|
homepage = "https://codeberg.org/crapStone/lamp"
|
|
repository = "https://codeberg.org/crapStone/lamp"
|
|
readme = "README.md"
|
|
categories = ["command-line-utilities"]
|
|
edition = "2021"
|
|
|
|
build = "build.rs"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[build-dependencies]
|
|
clap = "3.2.12"
|
|
clap_complete = "3.2.3"
|
|
|
|
[dependencies]
|
|
clap = "3.2.12"
|
|
exitcode = "1.1.2"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
panic = "abort"
|
|
strip = true
|
|
codegen-units = 1
|