[package]
edition = "2024"
rust-version = "1.88"
name = "ably-auth-openapi"
version = "0.2.0"
authors = ["Andrii Radyk <andrii@natter.co>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
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."
homepage = "https://github.com/AnderEnder/ably-chat-rs"
readme = "README.md"
keywords = [
"ably",
"auth",
"token",
"rest",
"openapi",
]
categories = ["api-bindings"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/AnderEnder/ably-chat-rs"
[package.metadata.docs.rs]
all-features = true
[features]
default = ["rustls"]
native-tls = ["reqwest/native-tls"]
rustls = ["reqwest/rustls"]
[lib]
name = "ably_auth_openapi"
path = "src/lib.rs"
[dependencies.reqwest]
version = "0.13"
features = [
"json",
"query",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_repr]
version = "0.1"
[dependencies.url]
version = "2"
[lints.clippy.all]
level = "allow"
priority = -1