[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"
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
[lints.clippy]
all = { level = "allow", priority = -1 }