-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
28 lines (25 loc) · 863 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
[package]
name = "openai-cli"
version = "0.3.7"
edition = "2021"
authors = ["LevitatingBusinessMan"]
description = "CLI for the OpenAI API"
homepage = "https://github.com/LevitatingBusinessMan/openai-cli"
repository = "https://github.com/LevitatingBusinessMan/openai-cli"
readme = "README.md"
license = "MIT"
keywords = ["openai", "gpt", "api", "cli", "terminal"]
categories = ["command-line-interface", "command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.70"
clap = { version = "4.1.8", features = ["derive", "env"] }
colored = "2.0.0"
dirs = "5.0.0"
inquire = "0.6.2"
openai-rust = "1.5"
reedline = "0.26"
serde_json = "1.0.94"
tokio = { features = ["macros", "rt-multi-thread"], version = "1" }
[patch.crates-io]
# openai-rust = { path = "../openai-rust" }