2023-05-19 21:20:58 +00:00
|
|
|
[package]
|
|
|
|
name = "ai"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/ai.rs"
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
2023-05-23 07:52:37 +00:00
|
|
|
collections = { path = "../collections"}
|
2023-05-19 21:20:58 +00:00
|
|
|
editor = { path = "../editor" }
|
2023-06-02 08:55:19 +00:00
|
|
|
fs = { path = "../fs" }
|
2023-05-19 21:20:58 +00:00
|
|
|
gpui = { path = "../gpui" }
|
2023-05-26 16:09:55 +00:00
|
|
|
language = { path = "../language" }
|
2023-06-02 09:38:02 +00:00
|
|
|
menu = { path = "../menu" }
|
2023-05-26 16:09:55 +00:00
|
|
|
search = { path = "../search" }
|
2023-06-02 08:55:19 +00:00
|
|
|
settings = { path = "../settings" }
|
2023-05-26 16:09:55 +00:00
|
|
|
theme = { path = "../theme" }
|
2023-05-23 02:28:22 +00:00
|
|
|
util = { path = "../util" }
|
2023-05-26 16:09:55 +00:00
|
|
|
workspace = { path = "../workspace" }
|
2023-05-19 21:20:58 +00:00
|
|
|
|
|
|
|
anyhow.workspace = true
|
2023-05-29 14:23:16 +00:00
|
|
|
chrono = "0.4"
|
2023-05-23 02:28:22 +00:00
|
|
|
futures.workspace = true
|
|
|
|
isahc.workspace = true
|
2023-06-02 08:55:19 +00:00
|
|
|
schemars.workspace = true
|
2023-05-29 14:23:16 +00:00
|
|
|
serde.workspace = true
|
|
|
|
serde_json.workspace = true
|
2023-06-02 15:21:18 +00:00
|
|
|
tiktoken-rs = "0.4"
|
2023-05-19 21:20:58 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
editor = { path = "../editor", features = ["test-support"] }
|