Releases: logankeenan/axum-cloudflare-adapter
Releases · logankeenan/axum-cloudflare-adapter
0.4.2
Updating dependencies
0.4.1
Fix: Includes dependencies necessary for code generated by worker_route_compat
0.4.0
- Feature: Creates
EnvWrapper
to allowworker::Env
to be used within Axum state. Note, theEnvWrapper
usesunsafe
to implSend
andSync
. This is fine because Cloudflare workers are single-threaded.
0.3.0
- Feature: add
#[worker_route_compat]
macro. This allows compatibility between Axum's future return types, which expects implSend
and JS types that do not implSend
. Add the macro to the Axum route to make them compatible.
0.2.0
- BREAKING: public functions will return
Result<T, Error>
to allow consumers to handle errors rather than panic. - PATCH: Update worker to 0.0.13
0.1.0
Initial Release
- Feature: allows a Cloudflare Worker Request to be converted to an Axum Request
- Feature: allows an Axum Response to be converted to a Cloudflare Worker Response