Bring back compiler optimizations

main
DaXcess 2022-11-05 15:55:03 +01:00
parent 877f758172
commit 2e6dde133b
2 changed files with 7 additions and 1 deletions

View File

@ -7,6 +7,12 @@ edition = "2021"
name = "spoticord"
path = "src/main.rs"
[profile.release]
lto = true
codegen-units = 1
strip = true
opt-level = "z"
[dependencies]
chrono = "0.4.22"
dotenv = "0.15.0"

View File

@ -1,3 +1,3 @@
pub const VERSION: &str = env!("CARGO_PKG_VERSION");
pub const MOTD: &str = "UNSTABLE BETA (v2)";
pub const MOTD: &str = "OPEN BETA (v2)";
// pub const MOTD: &str = "some good 'ol music";