viv_shell_gpt 0.1.0

ChatGPT in termianl that can run shell commands
[package]
name = "viv_shell_gpt"
version = "0.1.0"
edition = "2021"
license = "MIT"
description = "ChatGPT in termianl that can run shell commands"

[[bin]]
name = "shell_gpt"
path = "src/main.rs"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
clap = { version = "4.4.6", features = ["derive"] }
colored = "2.0.4"
directories = "5.0.1"
eventsource-stream = "0.2.3"
futures-util = "0.3.28"
reqwest = { version = "0.11.20", default-features = false, features = [
    "rustls-tls",
    "json",
    "stream",
] }
schemars = "0.8.15"
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.107"
shell-words = "1.1.0"
tokio = { version = "1.32.0", features = ["rt-multi-thread", "macros"] }