-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
29 lines (26 loc) · 843 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
25
26
27
28
29
[package]
name = "chatgpt_rust"
version = "0.4.2"
edition = "2021"
authors = ["zhulg <[email protected]>"]
license = "MIT"
description = "A tool for chatting using the ChatGPT API "
readme = "README.md"
repository = "https://github.com/zhulg/ChatGPT_CLI_Rust"
keywords = ["cli", "ChatGPT", "OpenAI", "gpt-3", "chatbot"]
categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
colored = "2.0.0"
dialoguer = "0.10.3"
dotenv = "0.15.0"
reqwest = { version = "0.11", features = ["json"] }
serde = { version = "1.0.154", features = ["derive"] }
serde_json = "1.0"
clap = "4.0.18"
tokio = { version = "1.26.0", features = ["full", "signal"] }
text2art = "1.0.1"
encoding_rs = "0.8.32"
rustyline = "11.0.0"
indicatif = "0.17.3"
signal-hook = "0.3.15"