about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBaitinq <[email protected]>2024-06-11 23:40:58 +0200
committerBaitinq <[email protected]>2024-06-11 23:40:58 +0200
commitddbd953be2429e40f521af29cd02a1bb23233d63 (patch)
treecf985e5dac5318509817b76c645ca6040c439746
parentfs-tracer: remove unneeded comment (diff)
downloadfs-tracer-ddbd953be2429e40f521af29cd02a1bb23233d63.tar.gz
fs-tracer-ddbd953be2429e40f521af29cd02a1bb23233d63.tar.bz2
fs-tracer-ddbd953be2429e40f521af29cd02a1bb23233d63.zip
fs-tracer: cleanup imports
-rw-r--r--fs-tracer/src/main.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/fs-tracer/src/main.rs b/fs-tracer/src/main.rs
index 6fed8e5..c59dd53 100644
--- a/fs-tracer/src/main.rs
+++ b/fs-tracer/src/main.rs
@@ -9,9 +9,7 @@ use fs_tracer_common::SyscallInfo;
 use log::{debug, info, warn};
 use std::env;
 use std::sync::atomic::{AtomicBool, Ordering};
-use std::sync::mpsc;
-use std::sync::{Arc, Mutex};
-use tokio::task;
+use std::sync::Arc;
 
 #[tokio::main]
 async fn main() -> Result<(), anyhow::Error> {