From c9a11a6843537ba51cfd5b746ade7ac11c0c96c6 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Mon, 10 Mar 2025 21:12:53 -0400 Subject: [PATCH] Replace option_env! with env --- src/bin/auracite/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/auracite/main.rs b/src/bin/auracite/main.rs index 3a072ef..78dbb14 100644 --- a/src/bin/auracite/main.rs +++ b/src/bin/auracite/main.rs @@ -30,7 +30,7 @@ fn main() { let mut about_data = KAboutData::from( QString::from("zone.xiv.auracite"), i18nc("@title", "Auracite"), - QString::from(option_env!("CARGO_PKG_VERSION").unwrap()), + QString::from(env!("CARGO_PKG_VERSION")), i18nc("@title", "Export your FFXIV character in portable, generic formats."), License::GPL_V3, );