-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (35 loc) · 889 Bytes
/
Copy pathCargo.toml
File metadata and controls
37 lines (35 loc) · 889 Bytes
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
[workspace]
members = [
"crates/app",
"crates/core",
"crates/desktop",
"crates/providers",
"crates/storage",
"crates/tui",
]
resolver = "2"
[workspace.package]
edition = "2021"
license = "Apache-2.0"
version = "0.1.0"
[workspace.dependencies]
anyhow = "1.0.98"
async-stream = "0.3.6"
chrono = { version = "0.4.41", features = ["serde"] }
clap = { version = "4.5.40", features = ["derive"] }
crossterm = "0.29.0"
futures-core = "0.3.31"
futures-util = "0.3.31"
genai = "0.2.4"
keyring = "4.1.2"
ratatui = "0.29.0"
reqwest-eventsource = "0.6.0"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
serde_yaml = "0.9.34"
tauri = "2.11.3"
tauri-build = "2.5.1"
thiserror = "2.0.12"
tokio = { version = "1.45.1", features = ["macros", "rt-multi-thread", "time"] }
toml = "1.1.2"
uuid = { version = "1.17.0", features = ["v4", "v5", "serde"] }