Alexander Mescheryakov

Results 4 issues of Alexander Mescheryakov

I wrote the following test: ```rust #[test] fn test_empty_seq() { #[derive(Debug, Serialize, Deserialize, PartialEq)] struct Test { int: u32, seq: Vec, } let test = Test { int: 1, seq:...

This change is [](https://reviewable.io/reviews/rurust/rustycrate.ru/313)

Related with **Support Wasm32 build for RPC-client** issue: #28697 `solana-rpc-client` has dependency `solana-sdk` of the 1.15.0 version and `solana-rpc-client-api` and `solana-account-decoder`, each of which depends on `spl-token-2022`, which in turn...

stale

What about using `()` as the default result type? Currently I need to use a lot of boilerplate code with the `rtype` attribute, like this: ```rust #[derive(Message, Debug)] #[rtype(result =...