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