feat: Switch from smol runtime to tokio

This commit is contained in:
Michael Aaron Murphy 2022-03-27 17:38:37 +02:00 committed by Michael Murphy
parent 4153f9f060
commit dbfb3921ae
23 changed files with 242 additions and 235 deletions

View file

@ -3,12 +3,11 @@
use futures::prelude::*;
use pop_launcher::*;
use smol::Unblock;
use std::{io, path::PathBuf};
use std::path::PathBuf;
pub struct App {
last_query: Option<String>,
out: Unblock<io::Stdout>,
out: tokio::io::Stdout,
shell_only: bool,
}