Successfully fetch completions from Copilot

We still need to process them and return them into a more Zed-friendly
structure, but we're getting there.
This commit is contained in:
Antonio Scandurra 2023-03-23 16:11:39 +01:00 committed by Mikayla Maki
parent 180371929b
commit 155594c8b8
3 changed files with 122 additions and 2 deletions

View file

@ -23,3 +23,12 @@ serde = { workspace = true }
serde_derive = { workspace = true }
smol = "1.2.5"
futures = "0.3"
[dev-dependencies]
gpui = { path = "../gpui", features = ["test-support"] }
language = { path = "../language", features = ["test-support"] }
settings = { path = "../settings", features = ["test-support"] }
lsp = { path = "../lsp", features = ["test-support"] }
util = { path = "../util", features = ["test-support"] }
client = { path = "../client", features = ["test-support"] }
workspace = { path = "../workspace", features = ["test-support"] }