[package] name = "gptsh" version = "0.0.2" edition = "2021" license = "MIT" description = "The AI-powered, noob-friendly interactive shell." repository = "https://github.com/wenyuzhao/gptsh" categories = [ "accessibility", "command-line-interface", "command-line-utilities", ] homepage = "https://github.com/wenyuzhao/gptsh" keywords = ["ai", "chatgpt", "gpt", "cli", "shell"] authors = ["Wenyu Zhao "] readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] anyhow = { version = "1.0.79", features = ["backtrace"] } async-openai = "0.18.3" clap = { version = "4.5.0", features = ["derive", "cargo"] } colored = "2.1.0" crossterm = "0.27.0" home = "0.5.9" once_cell = "1.19.0" rustyline = "13.0.0" serde = { version = "1.0.196", features = ["derive"] } serde_json = "1.0.113" shellwords = "1.1.0" termimad = "0.29.1" tokio = { version = "1.36.0", features = ["macros", "rt-multi-thread"] } toml = "0.8.10" use = "0.0.1-pre.0" whoami = "1.4.1"