chipp 0.3.0

Rust client for the Chipp.ai API - OpenAI-compatible chat completions with streaming support
Documentation
[package]
name = "chipp"
version = "0.3.0"
edition = "2021"
rust-version = "1.83"
authors = ["Paul Breuler <paul@alder.dev>"]
license = "MIT OR Apache-2.0"
description = "Rust client for the Chipp.ai API - OpenAI-compatible chat completions with streaming support"
repository = "https://github.com/paulbreuler/chipp-rs"
documentation = "https://docs.rs/chipp"
homepage = "https://chipp.ai"
keywords = ["chipp", "ai", "llm", "chat", "api"]
categories = ["api-bindings", "asynchronous", "web-programming::http-client"]
readme = "README.md"

[dependencies]
tokio = { version = "1.48", features = ["rt", "macros"] }
tokio-stream = "0.1"
reqwest = { version = "0.12", features = ["json", "stream"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "2.0"
uuid = { version = "1.18", features = ["v4"] }
tracing = "0.1"
futures = "0.3"
pin-project-lite = "0.2"
backoff = { version = "0.4.0", features = ["tokio"] }
bytes = "1.11.0"

[dev-dependencies]
mockito = "1.7.1"
serde_json = "1.0"
tokio = { version = "1.48", features = ["full", "test-util"] }
tokio-test = "0.4"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
wiremock = "0.6.5"

[features]
default = []
integration-tests = []

[[example]]
name = "simple"
required-features = []

[[example]]
name = "streaming"
required-features = []

[[example]]
name = "session"
required-features = []

[[example]]
name = "error_handling"
required-features = []

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