zed/crates/open_ai/Cargo.toml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
457 B
TOML
Raw Permalink Normal View History

[package]
name = "open_ai"
version = "0.1.0"
edition = "2021"
2024-03-20 17:52:02 +03:00
publish = false
2024-03-20 15:03:13 +03:00
license = "GPL-3.0-or-later"
[lints]
workspace = true
[lib]
path = "src/open_ai.rs"
[features]
default = []
schemars = ["dep:schemars"]
[dependencies]
anyhow.workspace = true
futures.workspace = true
http_client.workspace = true
isahc.workspace = true
schemars = { workspace = true, optional = true }
serde.workspace = true
serde_json.workspace = true
strum.workspace = true