kanarus
kanarus
This enables, for example, to implement HTTP (request) client for that HTTP types as `reqwest` crate for `http` crate
re-thinking about - https://github.com/ohkami-rs/ohkami/issues/454 the restriction of path params will be unintuitive for most users. Then, just `impl FromParam` or tuple of `impl FromParam`s *at any position* is so confusive,...
supported by https://github.com/ohkami-rs/ohkami/pull/416, as [samples/worker-with-global-bindings](https://github.com/ohkami-rs/ohkami/blob/v0.24/samples/worker-with-global-bindings/src/lib.rs)
`workers_openapi` calls `wrangler whoami` to get the cloudflare account name to build `production` url in `openapi.json` ( if not specified yet ). But... - it takes quite a long time...
https://developers.cloudflare.com/hyperdrive
Rust async runtime based on io-uring https://github.com/bytedance/monoio
Currently `IntoBody` trait is defined as: ```rust trait IntoBody { const CONTENT_TYPE: &'stattic str; fn into_body(self) -> Cow { unreachable!() } #[cfg(feature = "openapi")] fn openapi_responsebody() -> impl Into {...