-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (25 loc) · 782 Bytes
/
Cargo.toml
File metadata and controls
28 lines (25 loc) · 782 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
[package]
name = "rustgpt"
version = "0.1.2"
description = "Yet another command-line chat GPT frontend written in Rust."
authors = ["Makis Christou <makis_christou@protonmail.com>"]
edition = "2021"
license = "GPL-3.0-or-later"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
futures-util = "0.3.28"
ctrlc = "3.1.9"
dotenv = "0.15.0"
directories = "5.0.0"
chrono = "0.4.24"
reedline = "0.18.0"
crossterm = "0.26.1"
syntect = "5.0.0"
clap = { version = "4.3.19", features = ["derive"] }
[dependencies.reqwest]
version = "0.11.12"
default-features = false
features = ["rustls-tls", "stream", "json"]