mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
02c43a5bf2
This PR adds the missing workspace lint configuration for the following crates that were missing it: - `google_ai` - `open_ai` - `tab_switcher` Release Notes: - N/A
27 lines
457 B
TOML
27 lines
457 B
TOML
[package]
|
|
name = "open_ai"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
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
|