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