Fix fs2 import on zed

This commit is contained in:
Conrad Irwin 2023-10-26 11:41:15 +02:00
parent b875be9689
commit 693246ba26
3 changed files with 3 additions and 3 deletions

2
Cargo.lock generated
View File

@ -10745,7 +10745,7 @@ dependencies = [
"db2",
"env_logger 0.9.3",
"feature_flags",
"fs",
"fs2",
"fsevent",
"futures 0.3.28",
"fuzzy",

View File

@ -37,7 +37,7 @@ db2 = { path = "../db2" }
# feedback = { path = "../feedback" }
# file_finder = { path = "../file_finder" }
# search = { path = "../search" }
fs = { path = "../fs" }
fs2 = { path = "../fs2" }
fsevent = { path = "../fsevent" }
fuzzy = { path = "../fuzzy" }
# go_to_line = { path = "../go_to_line" }

View File

@ -9,7 +9,7 @@ use cli::{
CliRequest, CliResponse, IpcHandshake, FORCE_CLI_MODE_ENV_VAR_NAME,
};
use db2::kvp::KEY_VALUE_STORE;
use fs::RealFs;
use fs2::RealFs;
use futures::{channel::mpsc, SinkExt, StreamExt};
use gpui2::{App, AppContext, AsyncAppContext, SemanticVersion, Task};
use isahc::{prelude::Configurable, Request};