mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-12 13:24:19 +00:00
55 lines
1.8 KiB
TOML
55 lines
1.8 KiB
TOML
|
[package]
|
||
|
name = "assistant2"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
publish = false
|
||
|
|
||
|
[lib]
|
||
|
path = "src/assistant.rs"
|
||
|
doctest = false
|
||
|
|
||
|
[dependencies]
|
||
|
ai = { package = "ai2", path = "../ai2" }
|
||
|
client = { package = "client2", path = "../client2" }
|
||
|
collections = { path = "../collections"}
|
||
|
editor = { package = "editor2", path = "../editor2" }
|
||
|
fs = { package = "fs2", path = "../fs2" }
|
||
|
gpui = { package = "gpui2", path = "../gpui2" }
|
||
|
language = { package = "language2", path = "../language2" }
|
||
|
menu = { package = "menu2", path = "../menu2" }
|
||
|
multi_buffer = { package = "multi_buffer2", path = "../multi_buffer2" }
|
||
|
project = { package = "project2", path = "../project2" }
|
||
|
search = { package = "search2", path = "../search2" }
|
||
|
semantic_index = { package = "semantic_index2", path = "../semantic_index2" }
|
||
|
settings = { package = "settings2", path = "../settings2" }
|
||
|
theme = { package = "theme2", path = "../theme2" }
|
||
|
ui = { package = "ui2", path = "../ui2" }
|
||
|
util = { path = "../util" }
|
||
|
workspace = { package = "workspace2", path = "../workspace2" }
|
||
|
|
||
|
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]
|
||
|
ai = { package = "ai2", path = "../ai2", features = ["test-support"]}
|
||
|
editor = { package = "editor2", path = "../editor2", features = ["test-support"] }
|
||
|
project = { package = "project2", path = "../project2", features = ["test-support"] }
|
||
|
|
||
|
ctor.workspace = true
|
||
|
env_logger.workspace = true
|
||
|
log.workspace = true
|
||
|
rand.workspace = true
|