Optimize release builds (and format toml file)

This commit is contained in:
[object Object] 2022-12-28 12:33:05 -08:00
parent bd9f81f1f0
commit 2d8173aba8
No known key found for this signature in database
GPG Key ID: F9ECDF22D7D28727

View File

@ -8,16 +8,15 @@ homepage = "https://timvisee.com/projects/lazymc"
repository = "https://gitlab.com/timvisee/lazymc" repository = "https://gitlab.com/timvisee/lazymc"
description = "Put your Minecraft server to rest when idle." description = "Put your Minecraft server to rest when idle."
keywords = ["minecraft", "server", "idle", "cli"] keywords = ["minecraft", "server", "idle", "cli"]
categories = [ categories = ["command-line-interface", "games"]
"command-line-interface", exclude = ["/.github", "/contrib"]
"games",
]
exclude = [
"/.github",
"/contrib",
]
edition = "2021" edition = "2021"
[profile.release]
codegen-units = 1
lto = true
strip = true
[features] [features]
default = ["rcon", "lobby"] default = ["rcon", "lobby"]
@ -35,7 +34,14 @@ anyhow = "1.0"
base64 = "0.13" base64 = "0.13"
bytes = "1.1" bytes = "1.1"
chrono = "0.4" chrono = "0.4"
clap = { version = "3.0", default-features = false, features = [ "std", "cargo", "color", "env", "suggestions", "unicode" ]} clap = { version = "3.0", default-features = false, features = [
"std",
"cargo",
"color",
"env",
"suggestions",
"unicode",
] }
colored = "2.0" colored = "2.0"
derive_builder = "0.10" derive_builder = "0.10"
dotenv = "0.15" dotenv = "0.15"
@ -53,7 +59,17 @@ serde = "1.0"
serde_json = "1.0" serde_json = "1.0"
shlex = "1.1" shlex = "1.1"
thiserror = "1.0" thiserror = "1.0"
tokio = { version = "1", default-features = false, features = ["rt-multi-thread", "io-util", "net", "macros", "time", "process", "signal", "sync", "fs"] } tokio = { version = "1", default-features = false, features = [
"rt-multi-thread",
"io-util",
"net",
"macros",
"time",
"process",
"signal",
"sync",
"fs",
] }
toml = "0.5" toml = "0.5"
version-compare = "0.1" version-compare = "0.1"
@ -69,4 +85,10 @@ uuid = { version = "0.7", optional = true, features = ["v3"] }
libc = "0.2" libc = "0.2"
[target.'cfg(windows)'.dependencies] [target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["winuser", "processthreadsapi", "handleapi", "ntdef", "minwindef"] } winapi = { version = "0.3", features = [
"winuser",
"processthreadsapi",
"handleapi",
"ntdef",
"minwindef",
] }