zed/crates/assistant/Cargo.toml

57 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-only"
[lib]
2023-09-22 01:54:59 +00:00
path = "src/assistant.rs"
doctest = false
[dependencies]
ai = { path = "../ai" }
client = { path = "../client" }
2023-05-23 07:52:37 +00:00
collections = { path = "../collections"}
editor = { path = "../editor" }
fs = { path = "../fs" }
gpui = { path = "../gpui" }
language = { path = "../language" }
menu = { path = "../menu" }
multi_buffer = { path = "../multi_buffer" }
project = { path = "../project" }
search = { path = "../search" }
semantic_index = { path = "../semantic_index" }
settings = { path = "../settings" }
theme = { path = "../theme" }
ui = { path = "../ui" }
util = { path = "../util" }
workspace = { path = "../workspace" }
2023-10-06 14:30:31 +00:00
uuid.workspace = true
log.workspace = true
anyhow.workspace = true
chrono.workspace = true
futures.workspace = true
2023-08-22 06:16:22 +00:00
indoc.workspace = true
isahc.workspace = true
ordered-float.workspace = true
parking_lot.workspace = true
regex.workspace = true
schemars.workspace = true
2023-05-29 14:23:16 +00:00
serde.workspace = true
serde_json.workspace = true
smol.workspace = true
2023-11-14 13:28:57 +00:00
tiktoken-rs.workspace = true
[dev-dependencies]
ai = { path = "../ai", features = ["test-support"]}
editor = { path = "../editor", features = ["test-support"] }
project = { path = "../project", features = ["test-support"] }
ctor.workspace = true
env_logger.workspace = true
log.workspace = true
rand.workspace = true