ably-auth-openapi 0.2.0

Unofficial generated OpenAPI bindings for the Ably platform auth REST API (token issuance/revocation, server time). Not affiliated with or endorsed by Ably. Prefer the `ably-chat-rs` crate.
Documentation
[package]
name = "ably-auth-openapi"
description = "Unofficial generated OpenAPI bindings for the Ably platform auth REST API (token issuance/revocation, server time). Not affiliated with or endorsed by Ably. Prefer the `ably-chat-rs` crate."
readme = "README.md"
keywords = ["ably", "auth", "token", "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_auth_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). `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

# `src/` is machine-generated by openapi-generator from
# `openapi/ably-auth-rest.yaml` 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; blanket-allow here (in Cargo.toml, which is NOT
# regenerated) so the workspace `-D warnings` gate can't break on generated code.
[lints.clippy]
all = { level = "allow", priority = -1 }