zed/crates/ai/Cargo.toml

31 lines
647 B
TOML
Raw Normal View History

[package]
name = "ai"
version = "0.1.0"
edition = "2021"
publish = false
[lib]
path = "src/ai.rs"
doctest = false
[dependencies]
2023-05-23 06:55:13 +00:00
assets = { path = "../assets"}
2023-05-23 07:52:37 +00:00
collections = { path = "../collections"}
editor = { path = "../editor" }
gpui = { path = "../gpui" }
language = { path = "../language" }
search = { path = "../search" }
theme = { path = "../theme" }
util = { path = "../util" }
workspace = { path = "../workspace" }
anyhow.workspace = true
2023-05-29 14:23:16 +00:00
chrono = "0.4"
futures.workspace = true
isahc.workspace = true
2023-05-29 14:23:16 +00:00
serde.workspace = true
serde_json.workspace = true
[dev-dependencies]
editor = { path = "../editor", features = ["test-support"] }