mirror of
https://codeberg.org/Codeberg/pages-server.git
synced 2025-01-19 08:57:55 +00:00
28 lines
636 B
TOML
28 lines
636 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.1"
|
|
authors = ["crapStone <crapstone01@gmail.com>"]
|
|
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
|