-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (31 loc) · 889 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
30
31
32
[package]
authors = ["Craig Mayhew"]
categories = ["command-line-utilities"]
description = "A command line utility to pipe content to GPT"
edition = "2021"
include = [
"**/*.rs",
"Cargo.toml",
]
keywords = [
"cli",
"gpt",
"gpt4",
"openai",
"terminal",
]
license = "MIT"
name = "pipe-gpt"
readme = "README.md"
repository = "https://github.com/craigmayhew/pipe-gpt"
version = "0.4.0"
[dependencies]
atty = "0.2" # For determining if data is piped to the executable or not
clap = { version = "4.4", features = ["cargo"] } # For command-line argument parsing
env_logger = "0.9" # logging macros
log = "0.4" # logging macros
openai_api_rust = "0.1.9" # OpenAI API
regex = "1.10.4"
reqwest = "0.11" # For making HTTP requests
termimad = "0.28" # For rendering text as markdown in terminal
tokio = { version = "1.35", features = ["full"] } # For asynchronous runtime