gftea
gftea
the problem is you are using ` let results = join_all(futures).await;` this means interleaving of channel, the underlying reason is the the raw frame in protocol need to in sequential...
@ShaddyDC, the fundamental here is the wire frame will get out of order, so it is non-trival to provide precise and correct error messages, because in order to do that,...
seems to me good to make receiver as &mut on channel api, it would be breaking changes. I think maybe can be considered to make it in version 2 when...
OK I WILL do a cargo update.
I add @cdbennett into discussion for this, the recommended way forward I see is to add install_default() from now
@tyilo, my recommendation is as @cdbennett , due to large project, dependency conflicts issue are troublesome if encountered. After being used for a while, I think we should ensure this...
@cdbennett , may you help to add this to readme file? In the test cases and examples, we already have all fixed with `CryptoProvider::install_default()`
The impact is just one line of code to add `CryptoProvider::install_default()` without impact other functionalities, To create another major version is also too much in this case consider such trivial...