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
|
|
|
|
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-01-31 05:41:29 +03:00
|
|
|
futures.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
gpui.workspace = true
|
|
|
|
language.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
log.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
lsp.workspace = true
|
|
|
|
node_runtime.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
parking_lot.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
serde.workspace = true
|
|
|
|
serde_derive.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-02-06 22:41:36 +03:00
|
|
|
theme.workspace = true
|
|
|
|
util.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
|
|
|
|
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"] }
|