-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
54 lines (50 loc) · 1.28 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 = "ThinkMate"
version = "0.1.0"
edition = "2021"
license = "MIT"
authors = ["Vincent Hanquez <[email protected]>"]
homepage = "https://github.com/vincenthz/ThinkMate/"
repository = "https://github.com/vincenthz/ThinkMate/"
keywords = ["AI", "Ollama", "Frontend"]
categories = ["ui"]
rust-version = "1.78"
[dependencies]
iced = { version = "0.13", features = [
"tokio",
"svg",
"system",
"web-colors",
"image",
"advanced",
"fira-sans",
"markdown",
"highlighter",
] }
iced_aw = { version = "0.11", default-features = false, features = ["spinner"] }
iced_fonts = { version = "0.1", features = ["bootstrap", "nerd"] }
palette = "0.7"
ollama-rs = { version = "0.2.4", features = ["stream"] }
chrono = "*"
anyhow = "1"
tokio = { version = "1", features = ["full"] }
futures = "0.3"
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1" }
ulid = { version = "1", features = ["serde"] }
url = "2.5"
tracing = "0.1"
tracing-subscriber = "0.3"
directories = "6.0"
[package.metadata.bundle]
name = "ThinkMate"
identifier = "io.coretype.thinkmate"
icon = []
version = "1.0"
category = "Utilities"
short_description = "Assistant UI for AI models"
long_description = """
Application to use AI models easily
"""
[profile.release]
debug = true