[package]
edition = "2024"
name = "skyzen-cloudflare-admin"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Reusable Cloudflare control-plane API client — DNS, Pages, Access, Workers metadata. Extracted from fkgfw-deploy so any project that manages Cloudflare resources from a Rust CLI can depend on the admin surface without the rest of fkgfw."
readme = "README.md"
keywords = [
"cloudflare",
"api",
"dns",
"access",
"workers",
]
categories = [
"api-bindings",
"web-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/zen-rs/skyzen"
resolver = "2"
[lib]
name = "skyzen_cloudflare_admin"
path = "src/lib.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[lints.clippy]
all = "warn"
cargo = "warn"
complexity = "warn"
correctness = "warn"
nursery = "warn"
pedantic = "warn"
perf = "warn"
style = "warn"
suspicious = "warn"
[lints.clippy.multiple_crate_versions]
level = "allow"
priority = 1
[lints.rust]
missing_debug_implementations = "warn"
missing_docs = "warn"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(coverage)"]