2023-03-02 11:52:11 +00:00
|
|
|
[package]
|
|
|
|
name = "aichat"
|
2023-03-08 13:35:21 +00:00
|
|
|
version = "0.5.0"
|
2023-03-02 11:52:11 +00:00
|
|
|
edition = "2021"
|
2023-03-02 23:57:23 +00:00
|
|
|
authors = ["sigoden <sigoden@gmail.com>"]
|
2023-03-06 07:47:46 +00:00
|
|
|
description = "A powerful chatgpt cli."
|
2023-03-02 23:57:23 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
homepage = "https://github.com/sigoden/aichat"
|
|
|
|
repository = "https://github.com/sigoden/aichat"
|
|
|
|
categories = ["command-line-utilities"]
|
2023-03-08 13:56:24 +00:00
|
|
|
keywords = ["chatgpt", "ai", "gpt", "repl"]
|
2023-03-02 11:52:11 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow = "1.0.69"
|
|
|
|
bytes = "1.4.0"
|
|
|
|
clap = { version = "4.1.8", features = ["derive", "string"] }
|
|
|
|
dirs = "4.0.0"
|
|
|
|
eventsource-stream = "0.2.3"
|
|
|
|
futures-util = "0.3.26"
|
2023-03-04 01:02:57 +00:00
|
|
|
inquire = "0.5.3"
|
|
|
|
is-terminal = "0.4.4"
|
2023-03-02 11:52:11 +00:00
|
|
|
reedline = "0.16.0"
|
|
|
|
serde = { version = "1.0.152", features = ["derive"] }
|
|
|
|
serde_json = "1.0.93"
|
2023-03-03 01:38:53 +00:00
|
|
|
serde_yaml = "0.9.17"
|
2023-03-02 11:52:11 +00:00
|
|
|
tokio = { version = "1.26.0", features = ["full"] }
|
2023-03-04 01:02:57 +00:00
|
|
|
crossbeam = "0.8.2"
|
2023-03-04 16:01:45 +00:00
|
|
|
crossterm = "0.26.1"
|
2023-03-04 22:17:43 +00:00
|
|
|
chrono = "0.4.23"
|
2023-03-05 03:11:15 +00:00
|
|
|
atty = "0.2.14"
|
2023-03-07 03:38:44 +00:00
|
|
|
unicode-width = "0.1.10"
|
2023-03-07 07:37:03 +00:00
|
|
|
bincode = "1.3.3"
|
2023-03-07 14:33:34 +00:00
|
|
|
ctrlc = "3.2.5"
|
2023-03-04 01:02:57 +00:00
|
|
|
|
2023-03-08 13:35:21 +00:00
|
|
|
[dependencies.reqwest]
|
|
|
|
version = "0.11.14"
|
|
|
|
features = ["json", "stream", "socks", "rustls-tls", "rustls-tls-native-roots"]
|
|
|
|
default-features = false
|
|
|
|
|
2023-03-04 01:02:57 +00:00
|
|
|
[dependencies.syntect]
|
|
|
|
version = "5.0.0"
|
|
|
|
default-features = false
|
2023-03-07 07:37:03 +00:00
|
|
|
features = ["parsing", "regex-onig"]
|
2023-03-02 23:57:23 +00:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
lto = true
|
|
|
|
strip = true
|
|
|
|
opt-level = "z"
|