• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.github/workflows/H03-May-2022-298264

examples/H03-May-2022-7251

src/H03-May-2022-8,0896,100

tests/H03-May-2022-2,5122,054

.cargo-checksum.jsonH A D03-May-202289 11

.cargo_vcs_info.jsonH A D01-Jan-197074 65

.gitignoreH A D01-Jan-197019 32

Cargo.lockH A D01-Jan-197027.8 KiB1,115997

Cargo.tomlH A D01-Jan-19704.4 KiB218176

Cargo.toml.orig-cargoH A D01-Jan-19703.5 KiB11295

LICENSE-APACHEH A D01-Jan-197010.6 KiB202169

LICENSE-MITH A D01-Jan-19701.1 KiB2217

README.mdH A D01-Jan-19701.4 KiB4431

bors.tomlH A D01-Jan-1970602 1716

README.md

1# async-compression
2[![crates.io version][1]][2] ![build status][3]
3[![downloads][5]][6] [![docs.rs docs][7]][8]
4
5This crate provides adaptors between compression crates and Rust's modern
6asynchronous IO types.
7
8- [Documentation][8]
9- [Crates.io][2]
10- [Releases][releases]
11
12## Development
13
14When developing you will need to enable appropriate features for the different
15test cases to run, the simplest is `cargo test --all-features`, but you can
16enable different subsets of features as appropriate for the code you are
17testing to avoid compiling all dependencies, e.g. `cargo test --features
18gzip,stream`.
19
20## License
21
22Licensed under either of
23
24 * [Apache License, Version 2.0](LICENSE-APACHE)
25 * [MIT license](LICENSE-MIT)
26
27at your option.
28
29### Contribution
30
31Unless you explicitly state otherwise, any contribution intentionally submitted
32for inclusion in the work by you shall be dual licensed as above, without any
33additional terms or conditions.
34
35[1]: https://img.shields.io/crates/v/async-compression.svg?style=flat-square
36[2]: https://crates.io/crates/async-compression
37[3]: https://img.shields.io/github/workflow/status/Nemo157/async-compression/base?style=flat-square
38[5]: https://img.shields.io/crates/d/async-compression.svg?style=flat-square
39[6]: https://crates.io/crates/async-compression
40[7]: https://img.shields.io/badge/docs-latest-blue.svg?style=flat-square
41[8]: https://docs.rs/async-compression
42
43[releases]: https://github.com/Nemo157/async-compression/releases
44