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