
Drop dependency on tokio introduced by async-openai and do it ourselves. The approach I'm taking of replacing instead of appending is causing issues. Need to just append.
26 lines
498 B
TOML
26 lines
498 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
|
|
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"] }
|