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]
12assets = { path = "../assets"}
13collections = { path = "../collections"}
14editor = { path = "../editor" }
15gpui = { path = "../gpui" }
16util = { path = "../util" }
17
18serde.workspace = true
19serde_json.workspace = true
20anyhow.workspace = true
21futures.workspace = true
22isahc.workspace = true
23
24[dev-dependencies]
25editor = { path = "../editor", features = ["test-support"] }