Skip to content

Commit

Permalink
Use explict use statements instead of *.
Browse files Browse the repository at this point in the history
  • Loading branch information
nfachan committed Jan 8, 2025
1 parent 389c14e commit b9e19e7
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions crates/maelstrom-test-runner/src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,17 @@ mod tests;

use crate::{
config::{Repeat, StopAfter},
deps::{
CollectTests, KillOnDrop, MainAppDeps, TestArtifact as _, TestFilter as _, Wait as _,
WaitStatus,
},
metadata::Store as MetadataStore,
test_db::{TestDb, TestDbStore},
ui::UiSender,
ui::{Ui, UiJobId as JobId, UiMessage},
*,
ListAction, LoggingOutput,
};
use anyhow::Context as _;
use anyhow::{Context as _, Result};
use maelstrom_base::Timeout;
use maelstrom_client::{spec::JobSpec, JobStatus, ProjectDir, StateDir};
use maelstrom_util::{
Expand All @@ -24,8 +29,10 @@ use maelstrom_util::{
use main_app::MainApp;
use std::{
path::PathBuf,
sync::mpsc::{Receiver, Sender},
sync::Mutex,
sync::{
mpsc::{Receiver, Sender},
Arc, Mutex,
},
time::Duration,
};
use std_semaphore::Semaphore;
Expand Down

0 comments on commit b9e19e7

Please sign in to comment.