2023-03-23 05:22:08 +03:00
|
|
|
[package]
|
|
|
|
name = "copilot"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
2024-01-27 15:51:16 +03:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-01-23 19:40:30 +03:00
|
|
|
|
2024-03-05 20:01:17 +03:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
2023-03-23 05:22:08 +03:00
|
|
|
[lib]
|
|
|
|
path = "src/copilot.rs"
|
|
|
|
doctest = false
|
|
|
|
|
2023-04-05 11:26:43 +03:00
|
|
|
[features]
|
|
|
|
test-support = [
|
|
|
|
"collections/test-support",
|
|
|
|
"gpui/test-support",
|
|
|
|
"language/test-support",
|
|
|
|
"lsp/test-support",
|
|
|
|
"settings/test-support",
|
|
|
|
"util/test-support",
|
|
|
|
]
|
|
|
|
|
2023-03-23 05:22:08 +03:00
|
|
|
[dependencies]
|
2024-01-31 05:41:29 +03:00
|
|
|
anyhow.workspace = true
|
|
|
|
async-compression.workspace = true
|
2024-02-25 20:02:59 +03:00
|
|
|
async-tar.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
collections.workspace = true
|
2024-05-03 22:50:42 +03:00
|
|
|
client.workspace = true
|
2024-02-25 21:21:20 +03:00
|
|
|
command_palette_hooks.workspace = true
|
2024-05-03 22:50:42 +03:00
|
|
|
editor.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
futures.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
gpui.workspace = true
|
2024-05-11 00:50:20 +03:00
|
|
|
http.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
language.workspace = true
|
|
|
|
lsp.workspace = true
|
2024-05-03 22:50:42 +03:00
|
|
|
menu.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
node_runtime.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
parking_lot.workspace = true
|
2024-05-03 22:50:42 +03:00
|
|
|
project.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
serde.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
settings.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
smol.workspace = true
|
2024-05-03 22:50:42 +03:00
|
|
|
ui.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
util.workspace = true
|
2024-05-03 22:50:42 +03:00
|
|
|
workspace.workspace = true
|
2023-03-23 18:11:39 +03:00
|
|
|
|
2024-02-20 03:44:24 +03:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
async-std = { version = "1.12.0", features = ["unstable"] }
|
|
|
|
|
2023-03-23 18:11:39 +03:00
|
|
|
[dev-dependencies]
|
2024-02-06 22:41:36 +03:00
|
|
|
clock.workspace = true
|
2024-05-03 22:50:42 +03:00
|
|
|
indoc.workspace = true
|
|
|
|
serde_json.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
collections = { workspace = true, features = ["test-support"] }
|
2024-05-05 13:01:52 +03:00
|
|
|
editor = { workspace = true, features = ["test-support"] }
|
2024-02-06 22:41:36 +03:00
|
|
|
fs = { workspace = true, features = ["test-support"] }
|
|
|
|
gpui = { workspace = true, features = ["test-support"] }
|
|
|
|
language = { workspace = true, features = ["test-support"] }
|
|
|
|
lsp = { workspace = true, features = ["test-support"] }
|
2024-05-03 22:50:42 +03:00
|
|
|
project = { workspace = true, features = ["test-support"] }
|
2024-02-06 22:41:36 +03:00
|
|
|
rpc = { workspace = true, features = ["test-support"] }
|
|
|
|
settings = { workspace = true, features = ["test-support"] }
|
2024-05-03 22:50:42 +03:00
|
|
|
theme = { workspace = true, features = ["test-support"] }
|
2024-02-06 22:41:36 +03:00
|
|
|
util = { workspace = true, features = ["test-support"] }
|
2024-05-11 00:50:20 +03:00
|
|
|
http = { workspace = true, features = ["test-support"] }
|