Show guest only once even if they joined on two different windows

Co-Authored-By: Nathan Sobo <nathan@zed.dev>
This commit is contained in:
Antonio Scandurra 2022-05-17 16:21:09 +02:00
parent 692be10b10
commit 2d986c7968
4 changed files with 23 additions and 15 deletions

View file

@ -8,9 +8,10 @@ path = "src/client.rs"
doctest = false
[features]
test-support = ["gpui/test-support", "rpc/test-support"]
test-support = ["collections/test-support", "gpui/test-support", "rpc/test-support"]
[dependencies]
collections = { path = "../collections" }
gpui = { path = "../gpui" }
util = { path = "../util" }
rpc = { path = "../rpc" }
@ -33,5 +34,6 @@ tiny_http = "0.8"
url = "2.2"
[dev-dependencies]
collections = { path = "../collections", features = ["test-support"] }
gpui = { path = "../gpui", features = ["test-support"] }
rpc = { path = "../rpc", features = ["test-support"] }