-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
54 lines (50 loc) · 1.82 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
[package]
name = "ellama"
description = "Friendly interface to chat with an Ollama instance."
version = "0.3.1"
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
exclude = ["media/**"]
documentation = "https://docs.rs/ellama"
categories = ["visualization", "gui"]
keywords = ["llama", "ollama", "llm", "ai", "egui", "gui", "ui"]
homepage = "https://github.com/zeozeozeo/ellama"
repository = "https://github.com/zeozeozeo/ellama"
[profile.release]
strip = true
opt-level = 3
lto = true
codegen-units = 1
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
eframe = { version = "0.28.1", default-features = false, features = ["persistence", "x11", "wayland", "accesskit", "glow"] }
egui_commonmark = { git = "https://github.com/zeozeozeo/egui_commonmark.git", branch = "twemoji", features = ["twemoji", "better_syntax_highlighting", "svg"] }
env_logger = "0.11"
flowync = { version = "5.1", features = ["compact"] }
log = "0.4.22"
ollama-rs = { version = "0.2.1", features = ["rustls", "stream"] }
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1"
egui-modal = "0.4.0"
tts = { version = "0.26.3", optional = true }
parking_lot = { version = "0.12", optional = true }
bytesize = "1.3"
timeago = { version = "0.4", default-features = false, features = ["chrono"] }
chrono = { version = "0.4", features = ["serde"] }
egui_virtual_list = "0.4.0"
serde = { version = "1", features = ["derive"] }
rfd = { version = "0.14.1", default-features = false, features = ["tokio", "xdg-portal"] }
anyhow = "1"
serde_json = "1"
egui-notify = "0.15.0"
ron = "0.8.1"
fastrand = "2.1.1"
egui-twemoji = "0.4.0"
image = "0.25.2"
egui_extras = { version = "0.28.1", features = ["file", "image"] }
base64-stream = "4.0"
url = "2"
[features]
default = []
tts = ["parking_lot", "dep:tts"]