Xuanwo

Results 1605 comments of Xuanwo

> there should be another job that runs nightly (but using the stable compiler), updates all dependencies, then runs the tests, and opens an issue if there is a failure....

#102 has been merged, let's close this issue.

@Nemo157 Is there other concerns that block this PR get merged?

Maybe expose `decode` in `XzDecoder`? ```rust impl Decoder { pub fn decode( self: Pin, input: &mut PartialBuffer, output: &mut PartialBuffer ) -> Result { self.decoder.decode(&mut input, output) } } ```...

That's cool! If there is anything I can help with, just ping me back.

> so you can spawn the synchronous work into your sync-runtime and return a handle to get the result? Yep, similar. In databend, we have our own processors like the...

Hi, @Nemo157, I got a demo here. Code ```rust #[derive(Debug)] enum State { Reading, Decoding, Finishing, Done, } #[derive(Debug)] struct Reader { reader: R, decoder: D, multiple_members: bool, } impl...

Here is my progress, please take a look: async_compress side: https://github.com/Xuanwo/async-compression/tree/public_api my use-case: https://github.com/datafuselabs/opendal/pull/289

Please set env: `PKG_CONFIG_ALLOW_CROSS=1`