mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
38 lines
894 B
TOML
38 lines
894 B
TOML
[package]
|
|
name = "ai"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
path = "src/ai.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
collections = { path = "../collections"}
|
|
editor = { path = "../editor" }
|
|
fs = { path = "../fs" }
|
|
gpui = { path = "../gpui" }
|
|
language = { path = "../language" }
|
|
menu = { path = "../menu" }
|
|
search = { path = "../search" }
|
|
settings = { path = "../settings" }
|
|
theme = { path = "../theme" }
|
|
util = { path = "../util" }
|
|
workspace = { path = "../workspace" }
|
|
|
|
anyhow.workspace = true
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
futures.workspace = true
|
|
isahc.workspace = true
|
|
regex.workspace = true
|
|
schemars.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
smol.workspace = true
|
|
tiktoken-rs = "0.4"
|
|
|
|
[dev-dependencies]
|
|
editor = { path = "../editor", features = ["test-support"] }
|
|
project = { path = "../project", features = ["test-support"] }
|