ferristseng / rust-ipfs-api

IPFS HTTP client in Rust
Apache License 2.0
246 stars 68 forks source link

Replace all Box<dyn Stream<...> + Unpin> into BoxStream #95

Closed HoKim98 closed 2 years ago

HoKim98 commented 2 years ago

This commits implement the Send trait for the other async functions such as IpfsApi::get that return Box<dyn Stream<Item = Result<Bytes, Self::Error>> + Unpin>.

ferristseng commented 2 years ago

Looks awesome! Thank you!!