-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
24 lines (21 loc) · 903 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
[workspace]
members = ["core", "cli", "gui"]
resolver = "2"
[workspace.package]
version = "0.0.1"
edition = "2021"
description = "An AI Q&A chat util written using Rust"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace.dependencies]
tokio = { version = "1.20.0", features = ["macros", "rt-multi-thread"] }
reqwest = { version = "0.11.18", features = ["json", "stream"] }
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.107"
serde_json_path = "0.6.4"
log = "0.4.20"
uuid = { version = "1.3.3", features = ["v4", "serde", "fast-rng"] }
env_logger = "0.10.0"
eventsource-stream = { version ="0.2.3", features = ["std"] }
once_cell = "1.19.0"
chrono = { version = "0.4.19", features = ["clock", "serde"] }
sqlx = { version = "0.7.3", features = ["sqlite", "runtime-tokio", "tls-native-tls", "uuid", "json", "chrono" ] }