[package] name = "rustyopenai" version = "0.1.0" edition = "2021" description = "A Rust crate for interfacing with the OpenAI API." license = "MIT" homepage = "https://github.com/Isaac-Fate/rustyopenai" repository = "https://github.com/Isaac-Fate/rustyopenai" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] anyhow = "1.0.75" bytes = "1.5.0" dotenv = "0.15.0" env_logger = "0.10.1" futures = "0.3.29" lazy_static = "1.4.0" regex = "1.10.2" reqwest = { version = "0.11.22", features = ["stream", "json"] } serde = { version = "1.0.193", features = ["derive"] } serde_json = "1.0.108" serde_with = { version = "3.4.0", features = ["macros"] } tokio = { version = "1.35.0", features = ["macros"] } tracing = { version = "0.1.40", features = ["log"] }