mirror of
https://github.com/sigoden/aichat
synced 2024-11-12 01:10:43 +00:00
4b1d6c16b3
* feat: add `.set` command * Add config.role
47 lines
1.4 KiB
TOML
47 lines
1.4 KiB
TOML
[package]
|
|
name = "aichat"
|
|
version = "0.3.0"
|
|
edition = "2021"
|
|
authors = ["sigoden <sigoden@gmail.com>"]
|
|
description = "Chat with OpenAI GPT-3.5 in the terminal."
|
|
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"]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[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"
|
|
inquire = "0.5.3"
|
|
is-terminal = "0.4.4"
|
|
reedline = "0.16.0"
|
|
reqwest = { version = "0.11.14", features = ["json", "stream", "socks", "rustls-tls"], default-features = false}
|
|
serde = { version = "1.0.152", features = ["derive"] }
|
|
serde_json = "1.0.93"
|
|
serde_yaml = "0.9.17"
|
|
tokio = { version = "1.26.0", features = ["full"] }
|
|
mdcat = { version = "1.1.0", default-features = false, features =["static"] }
|
|
pulldown-cmark = { version = "0.9.2", default-features = false, features = ['simd'] }
|
|
crossbeam = "0.8.2"
|
|
crossterm = "0.26.1"
|
|
copypasta = "0.8.2"
|
|
chrono = "0.4.23"
|
|
atty = "0.2.14"
|
|
|
|
[dependencies.syntect]
|
|
version = "5.0.0"
|
|
default-features = false
|
|
features = ["parsing", "regex-fancy", "default-themes", "default-syntaxes"]
|
|
|
|
[profile.release]
|
|
lto = true
|
|
strip = true
|
|
opt-level = "z"
|