Disable Copilot entirely for stable releases

This lets us remove the logic for detecting whether a user is a staff
member.
This commit is contained in:
Antonio Scandurra 2023-04-05 15:49:59 +02:00
parent 781d065d0b
commit 15b26e10d4
4 changed files with 15 additions and 56 deletions

View file

@ -10,7 +10,6 @@ doctest = false
[features]
test-support = [
"client/test-support",
"collections/test-support",
"gpui/test-support",
"language/test-support",
@ -26,11 +25,9 @@ gpui = { path = "../gpui" }
language = { path = "../language" }
settings = { path = "../settings" }
theme = { path = "../theme" }
staff_mode = { path = "../staff_mode" }
lsp = { path = "../lsp" }
node_runtime = { path = "../node_runtime"}
util = { path = "../util" }
client = { path = "../client" }
async-compression = { version = "0.3", features = ["gzip", "futures-bufread"] }
async-tar = "0.4.2"
anyhow = "1.0"
@ -47,5 +44,4 @@ 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"] }