Stop depending on gpui in client2 and settings2

This commit is contained in:
Antonio Scandurra 2023-10-25 18:47:03 +02:00
parent 1b75603f63
commit 9986e526e5
3 changed files with 4 additions and 4 deletions

4
Cargo.lock generated
View File

@ -1471,7 +1471,7 @@ dependencies = [
"async-recursion 0.3.2",
"async-tungstenite",
"collections",
"db",
"db2",
"feature_flags2",
"futures 0.3.28",
"gpui2",
@ -7485,7 +7485,7 @@ version = "0.1.0"
dependencies = [
"anyhow",
"collections",
"feature_flags",
"feature_flags2",
"fs",
"futures 0.3.28",
"gpui2",

View File

@ -13,7 +13,7 @@ test-support = ["collections/test-support", "gpui2/test-support", "rpc/test-supp
[dependencies]
collections = { path = "../collections" }
db = { path = "../db" }
db2 = { path = "../db2" }
gpui2 = { path = "../gpui2" }
util = { path = "../util" }
rpc = { path = "../rpc" }

View File

@ -16,7 +16,7 @@ collections = { path = "../collections" }
gpui2 = { path = "../gpui2" }
sqlez = { path = "../sqlez" }
fs = { path = "../fs" }
feature_flags = { path = "../feature_flags" }
feature_flags2 = { path = "../feature_flags2" }
util = { path = "../util" }
anyhow.workspace = true