-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathCargo.toml
53 lines (46 loc) · 1.16 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
[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]
icebreaker_core.workspace = true
itertools.workspace = true
log.workspace = true
open.workspace = true
rand.workspace = true
tokio.workspace = true
tracing-subscriber.workspace = true
iced.workspace = true
iced.features = ["tokio", "svg", "markdown", "highlighter", "system", "web-colors", "advanced", "debug"]
[build-dependencies]
iced_fontello = "0.13"
[workspace]
members = ["core"]
[workspace.dependencies]
icebreaker_core.path = "./core"
iced.git = "https://github.com/iced-rs/iced.git"
iced.rev = "beddf49c76f3b43e7b33452831e1293cad28fd89"
chrono = "0.4"
decoder = "0.0.3"
dirs = "6.0"
function = "0.2"
futures = "0.3"
itertools = "0.13"
log = "0.4"
open = "5.2"
rand = "0.9"
reqwest = "0.12"
scraper = "0.22"
serde = "1.0"
serde_json = "1.0"
sipper = "0.1"
thiserror = "1.0"
tokio = "1.38"
tokio-stream = "0.1"
tracing-subscriber = "0.3"
url = "2.5"
uuid = "1.10"