installer: tokio runtime flavor current_thread

Slightly reduce binary size by using the smaller 'rt' feature and the
current_thread runtime flavor in the installer, since there is no
benefit to true multithreading.
This commit is contained in:
oopsbagel
2025-07-01 22:07:47 -07:00
parent b97421d220
commit 3a393fc29f
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -142,7 +142,7 @@ async fn run() -> Result<(), Error> {
Ok(())
}
#[tokio::main]
#[tokio::main(flavor = "current_thread")]
async fn main() {
if let Err(e) = run().await {
eprintln!("{e:?}");