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" }
14gpui = { path = "../gpui" }
15util = { path = "../util" }
16
17rust-embed.workspace = true
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"] }