Cargo.toml

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