-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
40 lines (36 loc) · 927 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "cosmic-ext-applet-ollama"
version = "0.1.0"
edition = "2021"
[profile.dev]
opt-level = 1
overflow-checks = false
[dependencies]
serde = { version = "1.0.202", features = ["derive"] }
serde_json = "1.0.117"
reqwest = { version = "0.12.4", features = ["json", "blocking", "stream"] }
tokio = { version = "1", features = ["full"] }
i18n-embed = { version = "0.15", features = [
"fluent-system",
"desktop-requester",
] }
i18n-embed-fl = "0.9"
anyhow = "1.0.86"
rust-embed = "8.4.0"
once_cell = "1.19.0"
async-stream = "0.3.5"
futures = "0.3.30"
bytes = "1.6.0"
ron = "0.8.1"
dirs = "5.0.1"
chrono = "0.4.38"
ashpd = { version = "0.10", features = ["wayland"] }
base64 = "0.22.1"
open = "5.3"
[dependencies.libcosmic]
git = "https://github.com/pop-os/libcosmic"
default-features = false
features = ["applet", "markdown", "tokio", "wayland", "winit"]
[features]
default = ["wgpu"]
wgpu = ["libcosmic/wgpu"]