pages-server/Cargo.toml

35 lines
894 B
TOML
Raw Normal View History

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 02:40:10 +00:00
name = "lamp"
2022-07-16 14:40:53 +00:00
version = "0.3.1"
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"]
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