Semyon Panenkov
Semyon Panenkov
This PR adds support for the `borsh` serialization library, similar to that of `serde` and `rkyv`.
**Version** I tested it with `1.35`, `1.36`, `1.37`, and `1.38`. **Platform** Ubuntu 20.04.6 LTS, Linux 5.4.0, x86_64. **Description** It seems that Tokio adds an implicit delay of 1ms to any...
The implementation of `BorshDeserialize` for `Box` has the following bounds, which I find quite strange: ```rust impl BorshDeserialize for Box where U: Into + Borrow, T: ToOwned + ?Sized, T::Owned:...