When I tried to install the https crate, I got the error: no method named `set_params` found for type `&mut brotli 2::write::BrotliEncoder<W>`. This is caused by commit 2e825dd which removed the set_params method for BrotliEncoder.
Other crates depending on brotli2 ^0.2 that use this method would also be affected. I think it should be re-implemented it with a deprecation warning, and then removed in version 0.3.0, even if it has no actual functionality.
When I tried to install the https crate, I got the error:
no method named `set_params` found for type `&mut brotli 2::write::BrotliEncoder<W>`
. This is caused by commit 2e825dd which removed theset_params
method forBrotliEncoder
.Other crates depending on
brotli2 ^0.2
that use this method would also be affected. I think it should be re-implemented it with a deprecation warning, and then removed in version 0.3.0, even if it has no actual functionality.