You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just an idea that was fishing around in my head lately, but I think it would be awesome to support additional crates for use between the newest async types/traits.
One in particular that stands out to me (and could be useful for the near future) is the zstd crate. In particular, we could apply the same kind of byte-stream encoding/decoding logic that we use for Deflate/Zlib to the zstd raw compresser/decompressers here. Also another thing to note is while it does support AsyncRead/AsyncWrite through a feature gate tokio-io, that is still on futures 0.1.
For zstd, it shouldn't take too long -- I might actually start work on it soon!
The text was updated successfully, but these errors were encountered:
Now that Zstd is supported over streams, it'd be nice to aggregate some resources for anyone wishing to provide more support over different encoding schemes.
This likely won't be worked on unless there's a hotter compression algorithm in town I suppose, but it's here for anyone that wants to give one of them a try.
Just an idea that was fishing around in my head lately, but I think it would be awesome to support additional crates for use between the newest async types/traits.
One in particular that stands out to me (and could be useful for the near future) is the zstd crate. In particular, we could apply the same kind of byte-stream encoding/decoding logic that we use for Deflate/Zlib to the zstd raw compresser/decompressers here. Also another thing to note is while it does support
AsyncRead
/AsyncWrite
through a feature gatetokio-io
, that is still on futures 0.1.For zstd, it shouldn't take too long -- I might actually start work on it soon!
The text was updated successfully, but these errors were encountered: