rust-multipart-rfc7578
rust-multipart-rfc7578 copied to clipboard
Implementation of RFC 7578 (Multipart) for Rust
I'm trying to upgrade my folk to hyper v1 (and therefore http to v1), so I can upgrade rust-ipfs-api as well. I think I have it mostly done, but i'm...
Linked: https://github.com/ferristseng/rust-ipfs-api/pull/140 I noticed a weird trait restriction in https://github.com/ferristseng/rust-ipfs-api that made it so only streams implementing `Sync` are permitted to the upload API. Even though the download API doesn't...
I'm using your IPFS crate where `IpfsClient::add` has a weird trait requirement that comes from `Form::add_reader` - namely it demands `'static`. **Why?** I'm trying to get a git object reader...