mirror of
https://github.com/sigoden/aichat
synced 2024-11-16 06:15:26 +00:00
bc44026ff8
* feat: enhance session/conversation * updates * updates * cut version v0.9.0-rc2 * add .session name completion
57 lines
1.4 KiB
TOML
57 lines
1.4 KiB
TOML
[package]
|
|
name = "aichat"
|
|
version = "0.9.0-rc2"
|
|
edition = "2021"
|
|
authors = ["sigoden <sigoden@gmail.com>"]
|
|
description = "A powerful chatgpt cli."
|
|
license = "MIT OR Apache-2.0"
|
|
homepage = "https://github.com/sigoden/aichat"
|
|
repository = "https://github.com/sigoden/aichat"
|
|
categories = ["command-line-utilities"]
|
|
keywords = ["chatgpt", "ai", "gpt", "repl"]
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.69"
|
|
bytes = "1.4.0"
|
|
clap = { version = "4.1.8", features = ["derive", "string"] }
|
|
dirs = "5.0.0"
|
|
eventsource-stream = "0.2.3"
|
|
futures-util = "0.3.26"
|
|
inquire = "0.6.2"
|
|
is-terminal = "0.4.9"
|
|
reedline = "0.21.0"
|
|
serde = { version = "1.0.152", features = ["derive"] }
|
|
serde_json = "1.0.93"
|
|
serde_yaml = "0.9.17"
|
|
tokio = { version = "1.26.0", features = ["full"] }
|
|
crossbeam = "0.8.2"
|
|
crossterm = "0.26.1"
|
|
chrono = "0.4.23"
|
|
unicode-width = "0.1.10"
|
|
bincode = "1.3.3"
|
|
ctrlc = "3.2.5"
|
|
parking_lot = "0.12.1"
|
|
lazy_static = "1.4.0"
|
|
fancy-regex = "0.11.0"
|
|
base64 = "0.21.0"
|
|
rustc-hash = "1.1.0"
|
|
bstr = "1.3.0"
|
|
nu-ansi-term = "0.47.0"
|
|
arboard = { version = "3.2.0", default-features = false }
|
|
async-trait = "0.1.74"
|
|
|
|
[dependencies.reqwest]
|
|
version = "0.11.14"
|
|
features = ["json", "stream", "socks", "rustls-tls", "rustls-tls-native-roots"]
|
|
default-features = false
|
|
|
|
[dependencies.syntect]
|
|
version = "5.0.0"
|
|
default-features = false
|
|
features = ["parsing", "regex-onig"]
|
|
|
|
[profile.release]
|
|
lto = true
|
|
strip = true
|
|
opt-level = "z"
|