Skip to content

Commit

Permalink
Merge branch 'main' into gh_main
Browse files Browse the repository at this point in the history
  • Loading branch information
dyegomb committed Nov 13, 2024
2 parents 1829bd8 + b713357 commit 5be62fc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,10 @@ pub enum MailReason {
}

fn main() -> Result<(), Box<dyn std::error::Error>> {
let rt = runtime::Builder::new_current_thread().build()?;
let rt = runtime::Builder::new_current_thread()
.enable_time()
.enable_io()
.build()?;

rt.block_on(async {
// Set default log level to INFO, changed with "RUST_LOG" environment variable
Expand Down

0 comments on commit 5be62fc

Please sign in to comment.