mirror of
https://github.com/mii443/openai-api-rs.git
synced 2025-08-22 23:25:39 +00:00
24 lines
605 B
TOML
24 lines
605 B
TOML
[package]
|
|
name = "openai-api-rs"
|
|
version = "2.0.2"
|
|
edition = "2021"
|
|
authors = ["Dongri Jin <dongrify@gmail.com>"]
|
|
license = "MIT"
|
|
description = "OpenAI API client library for Rust (unofficial)"
|
|
repository = "https://github.com/dongri/openai-api-rs"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies.serde]
|
|
version = "1"
|
|
features = ["derive"]
|
|
default-features = false
|
|
|
|
[dependencies.serde_json]
|
|
version = "1"
|
|
default-features = false
|
|
|
|
[dependencies.minreq]
|
|
version = "2"
|
|
default-features = false
|
|
features = ["https-rustls", "json-using-serde"] |