pages-server/Cargo.toml
2022-07-16 02:41:30 +02:00

34 lines
896 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 = "r_lamp"
version = "0.2.1"
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