History log of /tonic/tests/compression/src/compressing_request.rs (Results 1 – 8 of 8)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 79a06cc8 07-Jan-2025 Ilya Averyanov <[email protected]>

Add deflate compression support (#2117)

* Add deflate compression support

* Update test name

---------

Co-authored-by: tottoto <[email protected]>


Revision tags: v0.12.3, v0.12.2, v0.12.1, v0.12.0, v0.11.0
# e8cb48fc 15-Nov-2023 Quentin Perez <[email protected]>

Add zstd compression support (#1532)

* Implement zstd compression

* Parametrize compression tests

* add tests for accepting multiple encodings

* add some missing feature cfg for zstd

* make as_s

Add zstd compression support (#1532)

* Implement zstd compression

* Parametrize compression tests

* add tests for accepting multiple encodings

* add some missing feature cfg for zstd

* make as_str only crate public

* make into_accept_encoding_header_value handle all combinations

* make decompress implementation consistent

* use zstd::stream::read::Encoder

* use default compression level for zstd

* fix rebase

* fix CI issue

---------

Co-authored-by: martinabeleda <[email protected]>
Co-authored-by: Quentin Perez <[email protected]>
Co-authored-by: Lucio Franco <[email protected]>

show more ...


# f089e7a0 13-Nov-2023 tottoto <[email protected]>

chore: Refactor use of tokio-stream (#1560)


Revision tags: v0.10.2, v0.10.1, v0.10.0
# 23602b47 03-Aug-2023 tottoto <[email protected]>

chore(tests): Reduce futures crates (#1448)


Revision tags: v0.9.2, v0.9.1, v0.9.0, v0.8.4, v0.8.3, v0.8.2, v0.8.1, v0.8.0
# a585a722 13-Jun-2022 Marcus Griep <[email protected]>

feat!: remove codegen dependency on compression feature (#1004)


Revision tags: v0.7.2, v0.7.1, v0.7.0
# d4973642 22-Feb-2022 Lucio Franco <[email protected]>

chore: Remove MockStream (#923)


Revision tags: v0.6.2, v0.6.1, v0.6.0
# 88008191 20-Oct-2021 Julien Roncaglia <[email protected]>

compression: handle compression flag but no header (#763)

Co-authored-by: Quentin Perez <[email protected]>
Co-authored-by: Lucio Franco <[email protected]>


Revision tags: v0.5.2, v0.5.1, v0.5.0
# 0583cff8 02-Jul-2021 David Pedersen <[email protected]>

feat(codec): compression support (#692)

* Initial compression support

* Support configuring compression on `Server`

* Minor clean up

* Test that compression is actually happening

* Clean

feat(codec): compression support (#692)

* Initial compression support

* Support configuring compression on `Server`

* Minor clean up

* Test that compression is actually happening

* Clean up some todos

* channels compressing requests

* Move compression to be on the codecs

* Test sending compressed request to server that doesn't support it

* Clean up a bit

* Compress server streams

* Compress client streams

* Bidirectional streaming compression

* Handle receiving unsupported encoding

* Clean up

* Add note to future self

* Support disabling compression for individual responses

* Add docs

* Add compression examples

* Disable compression behind feature flag

* Add some docs

* Make flate2 optional dependency

* Fix docs wording

* Format

* Reply with which encodings are supported

* Convert tests to use mocked io

* Fix lints

* Use separate counters

* Don't make a long stream

* Address review feedback

show more ...