-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
37 lines (29 loc) · 884 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
[package]
name = "icebreaker"
version = "0.1.0"
authors = ["Héctor Ramón Jiménez <[email protected]>"]
edition = "2021"
description = "A local AI chat app powered by 🦀Rust, 🧊iced, 🤗Hugging Face, and 🦙llama.cpp "
license = "MIT"
repository = "https://github.com/hecrj/icebreaker"
[dependencies]
iced.version = "0.13"
iced.features = ["tokio", "svg", "markdown", "highlighter", "system", "web-colors", "debug"]
tokio.version = "1.38"
tokio.features = ["fs", "io-util", "process", "time"]
tokio-stream.version = "0.1"
tokio-stream.features = ["io-util"]
reqwest.version = "0.12"
reqwest.features = ["json"]
serde.version = "1.0"
serde.features = ["derive"]
chrono.version = "0.4"
chrono.features = ["serde"]
uuid.version = "1.10"
uuid.features = ["v4", "serde"]
dirs-next = "2.0"
futures = "0.3"
itertools = "0.13"
open = "5.2"
serde_json = "1.0"
thiserror = "1.0"