diff --git a/crates/project/src/fs.rs b/crates/project/src/fs.rs index a26b5ed8f72d4fa21998f32c69e5e5648b9f2636..994f60fb1fcc29703c28536eb38e444e91aec04e 100644 --- a/crates/project/src/fs.rs +++ b/crates/project/src/fs.rs @@ -115,7 +115,7 @@ impl Fs for RealFs { path: &Path, latency: Duration, ) -> Pin>>> { - let (mut tx, rx) = postage::mpsc::channel(64); + let (tx, rx) = smol::channel::unbounded(); let (stream, handle) = EventStream::new(&[path], latency); std::mem::forget(handle); std::thread::spawn(move || {