forked from rust-lang/flate2-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add an optional `tokio` feature to enable * Add `AsyncRead` and `AsyncWrite` trait implementations where appropriate. * Add a few misc methods for appropriate use with async * Avoid use of methods like `write_all` which aren't async-compatible. Currently the gzip `Read`-based streams do not implement `AsyncRead` due to the necessity for a large implementation overhaul if doing so. Closes rust-lang#91 Closes rust-lang#92 Closes rust-lang#93
- Loading branch information
1 parent
a3a6752
commit 9abf34f
Showing
9 changed files
with
677 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.