ably-chat-openapi 0.2.0

Unofficial generated OpenAPI bindings for the Ably Chat REST API (v4). Not affiliated with or endorsed by Ably. Prefer the `ably-chat-rs` crate.
Documentation
[package]
name = "ably-chat-openapi"
description = "Unofficial generated OpenAPI bindings for the Ably Chat REST API (v4). Not affiliated with or endorsed by Ably. Prefer the `ably-chat-rs` crate."
readme = "README.md"
keywords = ["ably", "chat", "rest", "openapi"]
categories = ["api-bindings"]
version.workspace = true
authors.workspace = true
license.workspace = true
edition.workspace = true
rust-version.workspace = true
repository.workspace = true
homepage.workspace = true

[lib]
name = "ably_chat_openapi"

[dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_repr = "0.1"
url = "2"
# The generated call sites use `.json()` (feature `json`) and `.query()`
# (feature `query`, gated in reqwest 0.13). The plan's `["json", "multipart"]`
# omits the required `query` feature; `multipart`/`form` are unused here.
reqwest = { version = "0.13", default-features = false, features = ["json", "query"] }

[features]
default = ["rustls"]
native-tls = ["reqwest/native-tls"]
rustls = ["reqwest/rustls"]

[package.metadata.docs.rs]
all-features = true

# The `src/` here is machine-generated by openapi-generator and MUST NOT be
# hand-edited (a CI codegen gate diffs it against a fresh regeneration). The
# generator emits idiomatic-but-not-clippy-clean style (explicit `return`s and
# hand-written `Default` impls), which would fail the workspace `-D warnings`
# gate. Silence exactly those known style lints here (in Cargo.toml, which is
# NOT regenerated) rather than touching the generated sources.
# Generated code is never hand-edited and must not fail the workspace clippy gate;
# blanket-allow so a newer clippy can't surface new lints and break `-D warnings`.
[lints.clippy]
all = { level = "allow", priority = -1 }