mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-09 03:57:39 +00:00
57 lines
1.3 KiB
TOML
57 lines
1.3 KiB
TOML
|
[package]
|
||
|
name = "completion"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
publish = false
|
||
|
license = "GPL-3.0-or-later"
|
||
|
|
||
|
[lints]
|
||
|
workspace = true
|
||
|
|
||
|
[lib]
|
||
|
path = "src/completion.rs"
|
||
|
doctest = false
|
||
|
|
||
|
[features]
|
||
|
test-support = [
|
||
|
"editor/test-support",
|
||
|
"language/test-support",
|
||
|
"project/test-support",
|
||
|
"text/test-support",
|
||
|
]
|
||
|
|
||
|
[dependencies]
|
||
|
anthropic = { workspace = true, features = ["schemars"] }
|
||
|
anyhow.workspace = true
|
||
|
client.workspace = true
|
||
|
collections.workspace = true
|
||
|
editor.workspace = true
|
||
|
futures.workspace = true
|
||
|
gpui.workspace = true
|
||
|
http.workspace = true
|
||
|
language_model.workspace = true
|
||
|
log.workspace = true
|
||
|
menu.workspace = true
|
||
|
ollama = { workspace = true, features = ["schemars"] }
|
||
|
open_ai = { workspace = true, features = ["schemars"] }
|
||
|
parking_lot.workspace = true
|
||
|
serde.workspace = true
|
||
|
serde_json.workspace = true
|
||
|
settings.workspace = true
|
||
|
smol.workspace = true
|
||
|
strum.workspace = true
|
||
|
theme.workspace = true
|
||
|
tiktoken-rs.workspace = true
|
||
|
ui.workspace = true
|
||
|
util.workspace = true
|
||
|
|
||
|
[dev-dependencies]
|
||
|
ctor.workspace = true
|
||
|
editor = { workspace = true, features = ["test-support"] }
|
||
|
env_logger.workspace = true
|
||
|
language = { workspace = true, features = ["test-support"] }
|
||
|
project = { workspace = true, features = ["test-support"] }
|
||
|
rand.workspace = true
|
||
|
text = { workspace = true, features = ["test-support"] }
|
||
|
unindent.workspace = true
|