mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-26 20:22:30 +00:00
27 lines
521 B
TOML
27 lines
521 B
TOML
[package]
|
|
name = "ai"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
path = "src/ai.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
editor = { path = "../editor" }
|
|
gpui = { path = "../gpui" }
|
|
util = { path = "../util" }
|
|
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
anyhow.workspace = true
|
|
indoc.workspace = true
|
|
pulldown-cmark = "0.9.2"
|
|
futures.workspace = true
|
|
isahc.workspace = true
|
|
unindent.workspace = true
|
|
async-stream = "0.3.5"
|
|
|
|
[dev-dependencies]
|
|
editor = { path = "../editor", features = ["test-support"] }
|