kanarus
kanarus
Thank you for opening issue! But I'm sorry, current ohkami can't handle `multipart/form-data`. Please wait for the development...
@kotlin2018 I'm very sorry that I've forgotten to respond for a long time... Ohkami has already been able to handle `multipart/form-data` requests by `builtin::payload::Multipart` with `Desrialize` like ```rust #[Payload(Multipart/D)] struct...
"intuitive and ultrafast web framework for Rust" "works on multiple runtimes"
"macro free"
"type safe"
https://github.com/awslabs/aws-lambda-web-adapter enables to run web apps directly on lambda
## Support container-less use - [cargo lambda](https://www.cargo-lambda.info/guide/getting-started.html) workflow - function URLs This requires adapter between [lambda_runtime](https://crates.io/crates/lambda_runtime) and Ohkami's fang system. ## `pf` ( platform ), not `rt` ( runtime )...
I found it depends on tokio runtime! → Ohkami will provide `rt_lambda` flag with `"dep:tokio"` [`lambda-runtime`](https://github.com/awslabs/aws-lambda-rust-runtime/tree/27191d0c4f2ce34ce982df7a67822b6a8d023bf8/lambda-runtime) : - [dependencies (Cargo.toml)](https://github.com/awslabs/aws-lambda-rust-runtime/blob/27191d0c4f2ce34ce982df7a67822b6a8d023bf8/lambda-runtime/Cargo.toml#L49-L54) - [usage of tokio runtime](https://github.com/awslabs/aws-lambda-rust-runtime/blob/27191d0c4f2ce34ce982df7a67822b6a8d023bf8/lambda-runtime/src/requests.rs#L125)
I built SQLx-D1: https://github.com/ohkami-rs/sqlx-d1 not an ORM, but enables compile-time SQL verification in SQLx's way. This is currently experimental implementation, though at least works in most cases.
may update `FromRequest`: add `fn n_path_params() -> usize` for the `n_params` handler validation default to 0, and `Path` provides the number of tuple elements ( or 1 for single param...