mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-10 05:37:29 +03:00
54 lines
1.3 KiB
TOML
54 lines
1.3 KiB
TOML
[package]
|
|
name = "assistant"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
path = "src/assistant.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
ai = { path = "../ai" }
|
|
client = { path = "../client" }
|
|
collections = { path = "../collections"}
|
|
editor = { path = "../editor" }
|
|
fs = { path = "../fs" }
|
|
gpui = { path = "../gpui" }
|
|
language = { path = "../language" }
|
|
menu = { path = "../menu" }
|
|
multi_buffer = { path = "../multi_buffer" }
|
|
search = { path = "../search" }
|
|
settings = { path = "../settings" }
|
|
theme = { path = "../theme" }
|
|
util = { path = "../util" }
|
|
workspace = { path = "../workspace" }
|
|
semantic_index = { path = "../semantic_index" }
|
|
project = { path = "../project" }
|
|
|
|
uuid.workspace = true
|
|
log.workspace = true
|
|
anyhow.workspace = true
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
futures.workspace = true
|
|
indoc.workspace = true
|
|
isahc.workspace = true
|
|
ordered-float.workspace = true
|
|
parking_lot.workspace = true
|
|
regex.workspace = true
|
|
schemars.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
smol.workspace = true
|
|
tiktoken-rs.workspace = true
|
|
|
|
[dev-dependencies]
|
|
editor = { path = "../editor", features = ["test-support"] }
|
|
project = { path = "../project", features = ["test-support"] }
|
|
ai = { path = "../ai", features = ["test-support"]}
|
|
|
|
ctor.workspace = true
|
|
env_logger.workspace = true
|
|
log.workspace = true
|
|
rand.workspace = true
|