multer icon indicating copy to clipboard operation
multer copied to clipboard

An async parser for multipart/form-data content-type in Rust

Results 2 multer issues
Sort by recently updated
recently updated
newest added

At present, the parser uses `format!` to generate strings during parsing. These should be removed. https://github.com/rousan/multer-rs/blob/fe853d64f3bb7763866bdaa90c617a11a6bde505/src/multipart.rs#L255 https://github.com/rousan/multer-rs/blob/fe853d64f3bb7763866bdaa90c617a11a6bde505/src/multipart.rs#L312 https://github.com/rousan/multer-rs/blob/fe853d64f3bb7763866bdaa90c617a11a6bde505/src/buffer.rs#L108 There are a couple of approaches: 1. Change the scanning code so...

help wanted

Is it possiable to support field `filename*` ? https://datatracker.ietf.org/doc/html/rfc6266#section-5

help wanted