alex/Cargo.toml

27 lines
780 B
TOML
Raw Normal View History

2021-09-13 12:18:18 +02:00
[package]
name = "alex"
2023-08-13 10:17:21 +02:00
version = "0.4.1"
2023-06-03 15:59:47 +02:00
description = "Wrapper around Minecraft server processes, designed to complement Docker image installations."
authors = ["Jef Roosens"]
edition = "2021"
2021-09-13 12:18:18 +02:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# Used for creating tarballs for backups
tar = "0.4.38"
2021-09-13 12:18:18 +02:00
# Used to compress said tarballs using gzip
flate2 = "1.0.26"
2023-06-15 20:36:46 +02:00
chrono = { version = "0.4.26", features = ["serde"] }
2023-06-05 10:06:50 +02:00
clap = { version = "4.3.1", features = ["derive", "env"] }
2023-06-06 16:57:59 +02:00
signal-hook = "0.3.15"
serde = { version = "1.0.164", features = ["derive"] }
2023-06-15 20:36:46 +02:00
serde_json = "1.0.96"
figment = { version = "0.10.10", features = ["env", "toml"] }
2021-09-13 12:56:41 +02:00
[profile.release]
lto = "fat"
codegen-units = 1
panic = "abort"
2023-06-03 15:59:47 +02:00
strip = true