1[package]
2name = "language_model"
3version = "0.1.0"
4edition.workspace = true
5publish.workspace = true
6license = "GPL-3.0-or-later"
7
8[lints]
9workspace = true
10
11[lib]
12path = "src/language_model.rs"
13doctest = false
14
15[features]
16test-support = []
17
18[dependencies]
19anyhow.workspace = true
20credentials_provider.workspace = true
21base64.workspace = true
22collections.workspace = true
23env_var.workspace = true
24futures.workspace = true
25gpui.workspace = true
26http_client.workspace = true
27icons.workspace = true
28image.workspace = true
29language_model_core.workspace = true
30log.workspace = true
31parking_lot.workspace = true
32serde.workspace = true
33serde_json.workspace = true
34thiserror.workspace = true
35util.workspace = true
36
37[dev-dependencies]
38gpui = { workspace = true, features = ["test-support"] }