[package] name = "shell-gpt" version = "0.1.1" edition = "2021" authors = ["rigwild "] repository = "https://github.com/rigwild/shell-gpt-rs" homepage = "https://github.com/rigwild/shell-gpt-rs" keywords = ["shell", "gpt", "chatgpt", "openai", "bash"] categories = ["command-line-utilities"] description = "Ask ChatGPT for a shell script, code, or anything, directly from your terminal 🤖🧠👨‍💻" license = "MIT" [[bin]] name = "gpt" path = "src/main.rs" [dependencies] serde = { version = "1.0", features = ["derive"] } reqwest = { version = "0.11", features = ["json", "blocking"] } thiserror = "1.0" directories = "5.0.0" rand = "0.8.5" orion = "0.17.4" anyhow = "1.0.70" users = "0.11.0" spinoff = "0.7.0" regex = "1.7.3"