2023-03-23 02:22:08 +00:00
|
|
|
[package]
|
|
|
|
name = "copilot"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
2024-01-27 12:51:16 +00:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-01-23 16:40:30 +00:00
|
|
|
|
2023-03-23 02:22:08 +00:00
|
|
|
[lib]
|
|
|
|
path = "src/copilot.rs"
|
|
|
|
doctest = false
|
|
|
|
|
2023-04-05 08:26:43 +00: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 02:22:08 +00:00
|
|
|
[dependencies]
|
2024-01-31 02:41:29 +00:00
|
|
|
anyhow.workspace = true
|
|
|
|
async-compression.workspace = true
|
|
|
|
async-tar = "0.4.2"
|
2024-02-06 19:41:36 +00:00
|
|
|
collections.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
futures.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
gpui.workspace = true
|
|
|
|
language.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
log.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
lsp.workspace = true
|
|
|
|
node_runtime.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
parking_lot.workspace = true
|
2023-04-25 00:41:55 +00:00
|
|
|
serde.workspace = true
|
|
|
|
serde_derive.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
settings.workspace = true
|
2023-04-25 00:41:55 +00:00
|
|
|
smol.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
theme.workspace = true
|
|
|
|
util.workspace = true
|
2023-03-23 15:11:39 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-02-06 19:41:36 +00:00
|
|
|
clock.workspace = true
|
|
|
|
collections = { workspace = true, features = ["test-support"] }
|
|
|
|
fs = { workspace = true, features = ["test-support"] }
|
|
|
|
gpui = { workspace = true, features = ["test-support"] }
|
|
|
|
language = { workspace = true, features = ["test-support"] }
|
|
|
|
lsp = { workspace = true, features = ["test-support"] }
|
|
|
|
rpc = { workspace = true, features = ["test-support"] }
|
|
|
|
settings = { workspace = true, features = ["test-support"] }
|
|
|
|
util = { workspace = true, features = ["test-support"] }
|