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]
12collections = { path = "../collections"}
13editor = { path = "../editor" }
14fs = { path = "../fs" }
15gpui = { path = "../gpui" }
16language = { path = "../language" }
17menu = { path = "../menu" }
18search = { path = "../search" }
19settings = { path = "../settings" }
20theme = { path = "../theme" }
21util = { path = "../util" }
22workspace = { path = "../workspace" }
23
24anyhow.workspace = true
25chrono = { version = "0.4", features = ["serde"] }
26futures.workspace = true
27isahc.workspace = true
28regex.workspace = true
29schemars.workspace = true
30serde.workspace = true
31serde_json.workspace = true
32smol.workspace = true
33tiktoken-rs = "0.4"
34
35[dev-dependencies]
36editor = { path = "../editor", features = ["test-support"] }
37project = { path = "../project", features = ["test-support"] }