[package]
edition = "2021"
name = "openai-tools"
version = "3.0.0"
authors = ["akitenkrad"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Tools for OpenAI API"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/akitenkrad/rs-openai-tools"
[package.metadata.release]
tag = true
[lib]
name = "openai_tools"
path = "src/lib.rs"
[[test]]
name = "audio_integration"
path = "tests/audio_integration.rs"
[[test]]
name = "batch_integration"
path = "tests/batch_integration.rs"
[[test]]
name = "chat_integration"
path = "tests/chat_integration.rs"
[[test]]
name = "conversations_integration"
path = "tests/conversations_integration.rs"
[[test]]
name = "embedding_integration"
path = "tests/embedding_integration.rs"
[[test]]
name = "enum_forward_compat"
path = "tests/enum_forward_compat.rs"
[[test]]
name = "files_integration"
path = "tests/files_integration.rs"
[[test]]
name = "fine_tuning_integration"
path = "tests/fine_tuning_integration.rs"
[[test]]
name = "image_formats_smoke"
path = "tests/image_formats_smoke.rs"
[[test]]
name = "images_integration"
path = "tests/images_integration.rs"
[[test]]
name = "models_by_version_integration"
path = "tests/models_by_version_integration.rs"
[[test]]
name = "models_integration"
path = "tests/models_integration.rs"
[[test]]
name = "moderations_integration"
path = "tests/moderations_integration.rs"
[[test]]
name = "readme_compile"
path = "tests/readme_compile.rs"
[[test]]
name = "realtime_integration"
path = "tests/realtime_integration.rs"
[[test]]
name = "responses_integration"
path = "tests/responses_integration.rs"
[[test]]
name = "videos_integration"
path = "tests/videos_integration.rs"
[dependencies.anyhow]
version = "1.0.100"
[dependencies.base64]
version = "0.22.1"
[dependencies.bytes]
version = "1.11"
[dependencies.derive-new]
version = "0.7.0"
[dependencies.dotenvy]
version = "0.15.7"
[dependencies.futures-util]
version = "0.3"
[dependencies.http]
version = "1.4"
[dependencies.image]
version = "0.25.9"
features = [
"png",
"jpeg",
"gif",
]
default-features = false
[dependencies.request]
version = "0.13.1"
features = [
"multipart",
"stream",
]
package = "reqwest"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.148"
[dependencies.strum]
version = "0.27.2"
features = ["derive"]
[dependencies.strum_macros]
version = "0.27.2"
[dependencies.thiserror]
version = "2.0.17"
[dependencies.tiktoken-rs]
version = "0.9.1"
[dependencies.tokio]
version = "1.49.0"
features = ["full"]
[dependencies.tokio-tungstenite]
version = "0.28"
features = ["native-tls"]
[dependencies.tracing]
version = "0.1.44"
features = ["log"]
[dependencies.tracing-subscriber]
version = "0.3.22"
features = ["env-filter"]
[dev-dependencies.test-log]
version = "0.2.19"
features = ["trace"]