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