Async support would be nice to have, especially for large CFB files because IO can take a significant amount of time in that case.
Currently, this issue can be worked around using Tokio's block_in_place function, but proper async support that uses the AsyncRead, AsyncWrite and AsyncSeek traits would be the best solution in the long run.
Async support would be nice to have, especially for large CFB files because IO can take a significant amount of time in that case.
Currently, this issue can be worked around using Tokio's
block_in_placefunction, but proper async support that uses theAsyncRead,AsyncWriteandAsyncSeektraits would be the best solution in the long run.