Skip to content

Commit

Permalink
Limit Cargo to current thread (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
arendjr authored Jul 17, 2023
1 parent 1952a35 commit 74fe8ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use tokio::fs;
use tracing::{error, info, trace, warn};
use tracing_subscriber::EnvFilter;

#[tokio::main]
#[tokio::main(flavor = "current_thread")]
async fn main() -> Result<(), anyhow::Error> {
let args = cli::Arguments::parse();

Expand Down

0 comments on commit 74fe8ed

Please sign in to comment.