[package] name = "ask-gpt" version = "0.1.0" authors = ["Dave Hay "] edition = "2021" license = "MIT OR Apache-2.0" keywords = ["cli", "GPT", "AI"] homepage = "https://github.com/dave-hay/ask-gpt" repository = "https://github.com/dave-hay/ask-gpt" readme = "README.md" categories = ["command-line-utilities", "development-tools::cargo-plugins"] description = "CLI tool for interacting with OpenAI's API including ChatGPT + GPT-4." # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] dotenv = "0.15.0" reqwest = { version = "0.11", features = ["json"] } tokio = { version = "1", features = ["full"] } serde_json = "1.0" [[bin]] name = "ask" path = "src/main.rs"