[package] name = "oye" version = "0.2.0" edition = "2021" authors = ["Lorenzo Carbonell "] homepage = "https://atareao.es" readme = "README.md" description = "A simple, lightweight app to use OpenAI's chatGPT from the terminal'" repository = "https://github.com/atareao/oye" license = "MIT" license-file = "LICENSE" keywords = ["linux", "terminal", "consola", "chatgpt"] categories = ["command-line-utilities"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] tokio = { version = "1.26", features = ["full"] } hyper = { version = "0.14", features = ["full"] } hyper-rustls = "0.23" # Yaml serde_yaml = "0.9" # log tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } # Utility serde = { version = "1", features = ["derive"] } serde_json = "1.0" dirs = "4.0" spinners = "4.1" colored = "2" inquire = "0.6" # clap = { version = "4.2.1", features = ["derive"] }