pages-server/Cargo.toml

29 lines
636 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]
name = "lamp"
2022-07-15 21:34:09 +00:00
version = "0.2.1"
authors = ["crapStone <crapstone01@gmail.com>"]
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