-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (31 loc) · 978 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
33
34
[package]
name = "gpto"
version = "0.2.1"
authors = ["Alan Vardy <[email protected]>"]
edition = "2021"
license = "MIT"
description = "A tiny unofficial OpenAI client"
readme = "README.md"
homepage = "https://github.com/alanvardy/gpto"
repository = "https://github.com/alanvardy/gpto"
keywords = ["cli", "openai", "client", "gpt"]
categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde_json = "1"
serde = { version = "1.0", features = ["derive"] }
reqwest = { version = "0.12", features = ["json", "blocking"] }
uuid = { version = "1.11", features = ["serde", "v4"] }
dirs = "5.0"
matches = "0.1.10"
regex = "1"
chrono = "0.4.38"
chrono-tz = "0.10.0"
colored = "2.1.0"
clap = { version = "4.5.21", features = ["derive"] }
rand = "0.8.5"
spinners = "4.1.1"
inquire = "0.7.5"
serde_with = {version = "3.11.0", features = ["json"]}
[dev-dependencies]
pretty_assertions = "1.4.1"