June

Results 23 comments of June

Looks like this is because I've got a bucket with a `cors` that includes only the `method` and `origin` fields, for whatever reason. This can be fixed by changing the...

Check failed due to which looks to have been fixed on latest nightly

I'm curious how y'all envision a `map_until` function would work. The difference between `take_while` and `take_until` being that we keep the first element for which the predicate isn't satisfied, what...

I've been thinking about it, and I think the `take_until` name is confusing, as it implies a reversal of the predicate (take until this is satisfied vs. take while this...

Is there a reason to use `FromStr` over an implementation with `serde` like @JSH32's? I may be misunderstanding the issue, but I'm imagining an interface like this: ```rust /// The...

I was mostly thinking about the additional form fields that can be posted with the files, as opposed to deserializing the content of the files. I don't have a ton...

> what syntax do you use for a list/array of parts Seems like we should support both the multiple files with same field name as well as multiple fields with...

I wasn't familiar with `awmp`, looks like it has an API similar to what I was imagining here-- > ```rust > struct Upload { > all_files: Vec, > cloud_file: S3Upload,...

Here's my proposal: 1. An internal API similar to `awmp`. * This will support splitting your fields into text fields and file fields, which store a list of pairs (`String`,...

@jacob-pro `TempFile` in my example was a misnomer---I meant any kind of internal representation representing the stream of bytes, that can eventually be used as any type that implements MultipartUpload....