cloudflare-rs
cloudflare-rs copied to clipboard
Rust library for the Cloudflare v4 API
Account ID was considered a string earlier. We've changed it to an object now (as per the API: https://api.cloudflare.com/#zone-create-zone)
Removes the `create_secret` module from `workers` given that is not available on Cloudflare API v4. Checking on [API docs][1] I'm unable to find documentation for such endpoint, theres also an...
Both fields are often not returned by certain cloudflare APIs (the Zero Trust API is a good example). Allowing serde to default them if not present allows these APIs to...
Part 1 of ??. This focuses on rewriting the core of the library (the framework module) to use a request/response abstraction. This model is much more open to extension and...
Draft for `TODO`s on api doc links
`Access to fetch at 'https://api.cloudflare.com/client/v4/zones' from origin 'http://lo:8000' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the...
Various fixes in the path of getting the `ListZones` endpoint to work correctly: - Use ListZonesParams for query in ListZones requests (fixes #75) - Fix fields that should be optional...
I would like to be able to make a Rust program to add or update a file on the origin server and then to purge the URL leading to that...
fix: allow dns record types to be specified without the corresponding value when listing dns records
This pull request fixes the problem described in issue #145 where record types must be specified together with a value of that type by adding a type `DnsRecordTypeWithOptionalContent` (I'm not...