-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
27 lines (24 loc) · 926 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
[package]
name = "termgpt"
authors = ["Gokul <@bahdotsh>"]
version = "0.1.1"
edition = "2021"
description = "A cli tool to interact with ChatGPT"
documentation = "https://github.com/bahdotsh/termgpt"
homepage = "https://github.com/bahdotsh/termgpt"
repository = "https://github.com/bahdotsh/termgpt"
keywords = ["openai", "cli", "rust", "assistant", "ai-tools"]
categories = ["command-line-utilities", "chatgpt", "ai-tools"]
license = "Unlicense OR MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-openai = "0.10.3"
clap = { version = "4.2.7", features = ["derive"] }
directories = "5.0.1"
eyre = "0.6.8"
futures = "0.3.28"
serde = { version = "1.0.162", features = ["derive"] }
tokio = { version = "1.28.0" , features = ["rt", "rt-multi-thread", "macros"] }
toml = "0.7.3"
toml_edit = "0.19.8"
os_info = { version = "3", default-features = false }