pages-server/Cargo.toml

35 lines
894 B
TOML
Raw Permalink Normal View History

2022-07-15 23:55:31 +02: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 18:47:26 +02:00
[package]
2022-07-16 04:40:10 +02:00
name = "lamp"
2022-07-16 16:40:53 +02:00
version = "0.3.1"
authors = ["crapStone <crapstone01@gmail.com>"]
2022-07-16 02:34:51 +02: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"]
edition = "2021"
2020-07-22 18:47:26 +02: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 23:34:09 +02:00
clap = "3.2.12"
clap_complete = "3.2.3"
2020-07-22 18:47:26 +02:00
[dependencies]
2022-07-15 23:34:09 +02:00
clap = "3.2.12"
2020-07-22 18:47:26 +02:00
exitcode = "1.1.2"
2021-10-26 17:31:38 +02:00
[profile.release]
lto = true
panic = "abort"
2022-07-15 23:34:09 +02:00
strip = true
2021-10-26 17:31:38 +02:00
codegen-units = 1