skailar 0.0.1

Official Rust SDK for the Skailar API
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.85"
name = "skailar"
version = "0.0.1"
authors = ["Skailar"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Official Rust SDK for the Skailar API"
homepage = "https://skailar.com"
documentation = "https://docs.rs/skailar"
readme = "README.md"
keywords = [
    "skailar",
    "llm",
    "ai",
    "openai-compatible",
    "sdk",
]
categories = [
    "api-bindings",
    "asynchronous",
]
license = "MIT"
repository = "https://github.com/getskailar/sdk-rust"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
default = []
tracing = ["dep:tracing"]

[lib]
name = "skailar"
path = "src/lib.rs"

[[example]]
name = "chat"
path = "examples/chat.rs"

[[example]]
name = "speech"
path = "examples/speech.rs"

[[example]]
name = "streaming"
path = "examples/streaming.rs"

[[example]]
name = "tool_calling"
path = "examples/tool_calling.rs"

[[example]]
name = "vision"
path = "examples/vision.rs"

[[test]]
name = "abort"
path = "tests/abort.rs"

[[test]]
name = "chat"
path = "tests/chat.rs"

[[test]]
name = "errors"
path = "tests/errors.rs"

[[test]]
name = "retries"
path = "tests/retries.rs"

[[test]]
name = "streaming"
path = "tests/streaming.rs"

[dependencies.bytes]
version = "1"

[dependencies.futures-timer]
version = "3"

[dependencies.futures-util]
version = "0.3"
features = ["std"]
default-features = false

[dependencies.reqwest]
version = "0.12"
features = [
    "json",
    "stream",
    "rustls-tls",
]
default-features = false

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.thiserror]
version = "2"

[dependencies.tracing]
version = "0.1"
optional = true

[dependencies.url]
version = "2"

[dev-dependencies.futures-util]
version = "0.3"
features = [
    "std",
    "async-await",
]
default-features = false

[dev-dependencies.serde_json]
version = "1"

[dev-dependencies.tokio]
version = "1"
features = [
    "macros",
    "rt-multi-thread",
    "time",
]

[dev-dependencies.wiremock]
version = "0.6"