Feature request for multi part forms support. This crate comes the closest out of the many that I have tried, but requires stream support to be implemented for a connection/request. I hacked it together with sans_io, but I cannot get the bytes::Bytes to be cast from the buffer type &[u8]
I have also tried:
- multipart but this only supports
std::io::Read and is no longer in development.
- axum multipart, but this requires
futures_util::stream::StreamExt.
- actix_multipart but this requires `futures_core::stream::Stream
Are there any plans for an embedded-io-async approach for this?
Feature request for multi part forms support. This crate comes the closest out of the many that I have tried, but requires stream support to be implemented for a connection/request. I hacked it together with
sans_io, but I cannot get thebytes::Bytesto be cast from the buffer type&[u8]I have also tried:
std::io::Readand is no longer in development.futures_util::stream::StreamExt.Are there any plans for an embedded-io-async approach for this?