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