2022-07-15 21:55:31 +00:00
|
|
|
# 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/>.
|
|
|
|
|
2020-07-22 16:47:26 +00:00
|
|
|
[package]
|
2022-07-16 00:34:51 +00:00
|
|
|
name = "r_lamp"
|
2022-07-15 21:34:09 +00:00
|
|
|
version = "0.2.1"
|
2021-10-23 20:57:56 +00:00
|
|
|
authors = ["crapStone <crapstone01@gmail.com>"]
|
2022-07-16 00:34:51 +00:00
|
|
|
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"]
|
2021-10-23 20:57:56 +00:00
|
|
|
edition = "2021"
|
2020-07-22 16:47:26 +00:00
|
|
|
|
|
|
|
build = "build.rs"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[build-dependencies]
|
2022-07-15 21:34:09 +00:00
|
|
|
clap = "3.2.12"
|
|
|
|
clap_complete = "3.2.3"
|
2020-07-22 16:47:26 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2022-07-15 21:34:09 +00:00
|
|
|
clap = "3.2.12"
|
2020-07-22 16:47:26 +00:00
|
|
|
exitcode = "1.1.2"
|
2021-10-26 15:31:38 +00:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
lto = true
|
|
|
|
panic = "abort"
|
2022-07-15 21:34:09 +00:00
|
|
|
strip = true
|
2021-10-26 15:31:38 +00:00
|
|
|
codegen-units = 1
|