-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
56 lines (51 loc) · 1.55 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[package]
name = "llming"
version = "0.1.0"
edition = "2021"
license = "MPL-2.0"
description = "An application for the COSMIC™ desktop"
repository = "https://github.com/cwahlfeldt/llming"
[workspace]
members = ["crates/*"]
[build-dependencies]
vergen = { version = "8", features = ["git", "gitcl"] }
[dependencies]
futures-util = "0.3.31"
i18n-embed-fl = "0.9.2"
open = "5.3.0"
rust-embed = "8.5.0"
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "1.41.0", features = ["full"] }
async-stream = "0.3"
rustc-hash = "1.1"
dotenv = "0.15.0"
# hyperax = { path = "crates/hyperax" }
utils = { path = "crates/utils" }
# assistant = { path = "crates/assistant" }
# context-forge = { path = "crates/context-forge" }
conduit = { path = "crates/conduit" }
[dependencies.i18n-embed]
version = "0.15"
features = ["fluent-system", "desktop-requester"]
[dependencies.libcosmic]
git = "https://github.com/pop-os/libcosmic.git"
# See https://github.com/pop-os/libcosmic/blob/master/Cargo.toml for available features.
features = [
# Accessibility support
"a11y",
# Uses cosmic-settings-daemon to watch for config file changes
"dbus-config",
# Support creating additional application windows.
"multi-window",
# On app startup, focuses an existing instance if the app is already open
"single-instance",
# Uses tokio as the executor for the runtime
"tokio",
# Windowing support for X11, Windows, Mac, & Redox
"winit",
# Add Wayland support to winit
"wayland",
# GPU-accelerated rendering
"wgpu",
"markdown",
]