-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathCargo.toml
More file actions
72 lines (68 loc) · 2.12 KB
/
Cargo.toml
File metadata and controls
72 lines (68 loc) · 2.12 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[package]
name = "ellama"
description = "Friendly interface to chat with an Ollama instance."
version = "0.4.0"
edition = "2021"
license = "Unlicense OR 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"
authors = ["zeozeozeo <i@zeo.lol>"]
[package.metadata.wix]
upgrade-guid = "0A1DD80C-A3CE-4FF9-87D6-E42AE70FA2D3"
path-guid = "978B4217-AC4F-48DC-BF7B-AA02673D1E39"
license = false
eula = false
[dependencies]
eframe = { version = "0.31.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.27"
ollama-rs = { version = "0.3.1", features = ["rustls", "stream"] }
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1"
egui-modal = { git = "https://github.com/zeozeozeo/egui-modal.git", branch = "egui-0.31" }
tts = { version = "0.26.3", optional = true }
parking_lot = { version = "0.12", optional = true }
bytesize = "2.0.1"
timeago = { version = "0.4", default-features = false, features = ["chrono"] }
chrono = { version = "0.4", features = ["serde"] }
egui_virtual_list = "0.7.0"
serde = { version = "1", features = ["derive"] }
rfd = { version = "0.15.3", default-features = false, features = [
"tokio",
"xdg-portal",
] }
anyhow = "1"
serde_json = "1"
egui-notify = "0.19.0"
ron = "0.10.1"
fastrand = "2.3.0"
egui-twemoji = "0.7.1"
image = "0.25.6"
egui_extras = { version = "0.31.1", features = ["file", "image"] }
base64-stream = "4.0"
url = "2"
openssl = { version = "0.10.73", features = ["vendored"] }
[features]
default = []
tts = ["parking_lot", "dep:tts"]
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "fat"