mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-01 11:25:12 +03:00
80080a43e4
Each message is represented as a multibuffer excerpt to allow for fluid editing of the conversation transcript. Co-Authored-By: Antonio Scandurra <antonio@zed.dev>
30 lines
632 B
TOML
30 lines
632 B
TOML
[package]
|
|
name = "ai"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
path = "src/ai.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
assets = { path = "../assets"}
|
|
collections = { path = "../collections"}
|
|
editor = { path = "../editor" }
|
|
gpui = { path = "../gpui" }
|
|
language = { path = "../language" }
|
|
search = { path = "../search" }
|
|
theme = { path = "../theme" }
|
|
util = { path = "../util" }
|
|
workspace = { path = "../workspace" }
|
|
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
anyhow.workspace = true
|
|
futures.workspace = true
|
|
isahc.workspace = true
|
|
|
|
[dev-dependencies]
|
|
editor = { path = "../editor", features = ["test-support"] }
|