2023-05-19 21:20:58 +00:00
|
|
|
[package]
|
2023-09-22 01:54:59 +00:00
|
|
|
name = "assistant"
|
2023-05-19 21:20:58 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[lib]
|
2023-09-22 01:54:59 +00:00
|
|
|
path = "src/assistant.rs"
|
2023-05-19 21:20:58 +00:00
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
2024-01-03 19:48:46 +00:00
|
|
|
ai = { path = "../ai" }
|
2024-01-03 20:02:14 +00:00
|
|
|
client = { path = "../client" }
|
2023-05-23 07:52:37 +00:00
|
|
|
collections = { path = "../collections"}
|
2023-05-19 21:20:58 +00:00
|
|
|
editor = { path = "../editor" }
|
2024-01-03 20:09:08 +00:00
|
|
|
fs = { path = "../fs" }
|
2024-01-03 20:59:39 +00:00
|
|
|
gpui = { path = "../gpui" }
|
2024-01-03 19:58:02 +00:00
|
|
|
language = { path = "../language" }
|
2024-01-03 20:28:45 +00:00
|
|
|
menu = { path = "../menu" }
|
2023-10-25 17:31:47 +00:00
|
|
|
multi_buffer = { path = "../multi_buffer" }
|
2024-01-03 19:53:24 +00:00
|
|
|
project = { path = "../project" }
|
2023-05-26 16:09:55 +00:00
|
|
|
search = { path = "../search" }
|
2024-01-03 20:09:08 +00:00
|
|
|
semantic_index = { path = "../semantic_index" }
|
2024-01-03 20:28:45 +00:00
|
|
|
settings = { path = "../settings" }
|
2024-01-03 20:41:01 +00:00
|
|
|
theme = { path = "../theme" }
|
2024-01-03 20:33:51 +00:00
|
|
|
ui = { path = "../ui" }
|
2023-05-23 02:28:22 +00:00
|
|
|
util = { path = "../util" }
|
2023-05-26 16:09:55 +00:00
|
|
|
workspace = { path = "../workspace" }
|
2023-05-19 21:20:58 +00:00
|
|
|
|
2023-10-06 14:30:31 +00:00
|
|
|
uuid.workspace = true
|
2023-10-02 16:15:59 +00:00
|
|
|
log.workspace = true
|
2023-05-19 21:20:58 +00:00
|
|
|
anyhow.workspace = true
|
2023-06-21 14:06:09 +00:00
|
|
|
chrono = { version = "0.4", features = ["serde"] }
|
2023-05-23 02:28:22 +00:00
|
|
|
futures.workspace = true
|
2023-08-22 06:16:22 +00:00
|
|
|
indoc.workspace = true
|
2023-05-23 02:28:22 +00:00
|
|
|
isahc.workspace = true
|
2023-08-24 10:45:44 +00:00
|
|
|
ordered-float.workspace = true
|
2023-09-11 12:35:15 +00:00
|
|
|
parking_lot.workspace = true
|
2023-06-20 19:29:34 +00:00
|
|
|
regex.workspace = true
|
2023-06-02 08:55:19 +00:00
|
|
|
schemars.workspace = true
|
2023-05-29 14:23:16 +00:00
|
|
|
serde.workspace = true
|
|
|
|
serde_json.workspace = true
|
2023-06-20 09:59:51 +00:00
|
|
|
smol.workspace = true
|
2023-11-14 13:28:57 +00:00
|
|
|
tiktoken-rs.workspace = true
|
2023-05-19 21:20:58 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-01-03 19:48:46 +00:00
|
|
|
ai = { path = "../ai", features = ["test-support"]}
|
2023-05-19 21:20:58 +00:00
|
|
|
editor = { path = "../editor", features = ["test-support"] }
|
2024-01-03 19:53:24 +00:00
|
|
|
project = { path = "../project", features = ["test-support"] }
|
2023-08-23 07:09:01 +00:00
|
|
|
|
|
|
|
ctor.workspace = true
|
|
|
|
env_logger.workspace = true
|
|
|
|
log.workspace = true
|
|
|
|
rand.workspace = true
|