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" }
14client = { path = "../client" }
15collections = { path = "../collections"}
16editor = { path = "../editor" }
17fs = { path = "../fs" }
18gpui = { path = "../gpui" }
19language = { path = "../language" }
20menu = { path = "../menu" }
21multi_buffer = { path = "../multi_buffer" }
22project = { path = "../project" }
23search = { path = "../search" }
24semantic_index = { path = "../semantic_index" }
25settings = { path = "../settings" }
26theme = { path = "../theme" }
27ui = { path = "../ui" }
28util = { path = "../util" }
29workspace = { path = "../workspace" }
30
31uuid.workspace = true
32log.workspace = true
33anyhow.workspace = true
34chrono.workspace = true
35futures.workspace = true
36indoc.workspace = true
37isahc.workspace = true
38ordered-float.workspace = true
39parking_lot.workspace = true
40regex.workspace = true
41schemars.workspace = true
42serde.workspace = true
43serde_json.workspace = true
44smol.workspace = true
45tiktoken-rs.workspace = true
46
47[dev-dependencies]
48ai = { path = "../ai", features = ["test-support"]}
49editor = { path = "../editor", features = ["test-support"] }
50project = { path = "../project", features = ["test-support"] }
51
52ctor.workspace = true
53env_logger.workspace = true
54log.workspace = true
55rand.workspace = true