1[package]
2name = "assistant"
3version = "0.1.0"
4edition = "2021"
5publish = false
6license = "GPL-3.0-or-later"
7
8[lib]
9path = "src/assistant.rs"
10doctest = false
11
12[dependencies]
13ai = { path = "../ai" }
14anyhow.workspace = true
15chrono.workspace = true
16client = { path = "../client" }
17collections = { path = "../collections" }
18editor = { path = "../editor" }
19fs = { path = "../fs" }
20futures.workspace = true
21gpui = { path = "../gpui" }
22indoc.workspace = true
23isahc.workspace = true
24language = { path = "../language" }
25log.workspace = true
26menu = { path = "../menu" }
27multi_buffer = { path = "../multi_buffer" }
28ordered-float.workspace = true
29parking_lot.workspace = true
30project = { path = "../project" }
31regex.workspace = true
32schemars.workspace = true
33search = { path = "../search" }
34semantic_index = { path = "../semantic_index" }
35serde.workspace = true
36serde_json.workspace = true
37settings = { path = "../settings" }
38smol.workspace = true
39theme = { path = "../theme" }
40tiktoken-rs.workspace = true
41ui = { path = "../ui" }
42util = { path = "../util" }
43uuid.workspace = true
44workspace = { path = "../workspace" }
45
46[dev-dependencies]
47ai = { path = "../ai", features = ["test-support"] }
48ctor.workspace = true
49editor = { path = "../editor", features = ["test-support"] }
50env_logger.workspace = true
51log.workspace = true
52project = { path = "../project", features = ["test-support"] }
53rand.workspace = true