zed/crates/assistant/Cargo.toml

54 lines
1.4 KiB
TOML
Raw Normal View History

[package]
2023-09-22 01:54:59 +00:00
name = "assistant"
version = "0.1.0"
edition = "2021"
publish = false
license = "GPL-3.0-or-later"
[lib]
2023-09-22 01:54:59 +00:00
path = "src/assistant.rs"
doctest = false
[dependencies]
ai = { path = "../ai" }
anyhow.workspace = true
chrono.workspace = true
client = { path = "../client" }
collections = { path = "../collections" }
editor = { path = "../editor" }
fs = { path = "../fs" }
futures.workspace = true
gpui = { path = "../gpui" }
indoc.workspace = true
isahc.workspace = true
language = { path = "../language" }
log.workspace = true
menu = { path = "../menu" }
multi_buffer = { path = "../multi_buffer" }
ordered-float.workspace = true
parking_lot.workspace = true
project = { path = "../project" }
regex.workspace = true
schemars.workspace = true
search = { path = "../search" }
semantic_index = { path = "../semantic_index" }
2023-05-29 14:23:16 +00:00
serde.workspace = true
serde_json.workspace = true
settings = { path = "../settings" }
smol.workspace = true
theme = { path = "../theme" }
2023-11-14 13:28:57 +00:00
tiktoken-rs.workspace = true
ui = { path = "../ui" }
util = { path = "../util" }
uuid.workspace = true
workspace = { path = "../workspace" }
[dev-dependencies]
ai = { path = "../ai", features = ["test-support"] }
ctor.workspace = true
editor = { path = "../editor", features = ["test-support"] }
env_logger.workspace = true
log.workspace = true
project = { path = "../project", features = ["test-support"] }
rand.workspace = true