Lachezar Lechev
Lachezar Lechev
Hello, I'm trying to make a transaction, but I am hitting a wall and can't figure it out. Is it possible for an example with transaction and 2 inserts for...
Last year I've added a few categories to crates.io related to aerospace (https://github.com/rust-lang/crates.io/issues/4105). I think it's a feature that's not used too much and you can see that there aren't...
Since https://docs.rs/ethsign/latest/ethsign/struct.SecretKey.html#method.sign returns the `secp256k1` can we consider exporting the error or just use the `ethsign::Error` instead? It would be nice to have `SecretKey::sing` directly use an array `[u8; 32]`...
- Update `secp256k1` crate - re-export ec::Error - remove ethsign-crypto features - ethsign-crypto -bump up `scrypt` & `pdkdf2` Seems reasonable to also export publicly the `ethsign-scrypt::Error` too.
I am trying to figure out how to connect QGroundControl with the video stream, can someone provides me with hints :sweat_smile: ? Or if it's possible to connect to the...
We use in our projects a couple of other tools I'd like to share with you: - tokio-postgres - Deadpool (deadpool-postgres, etc) - bb8 (bb8-postgres, etc) Serde has a full...
- Fixes #92 - Since 0.7.1 is not released on docs.rs, currently, the documentation links fail :point_right: https://docs.rs/serde_urlencoded/0.7.1/serde_urlencoded/ this is why I've shortened the docs link to `https://docs.rs/serde_urlencoded` which will...
It would be great to have some documentation on how to chose a proper `chan_size`. I tried using large size like `2_147_483_648_usize` however cargo just panics. And it's also panicing...
Enums derive
Hello everyone! I am working on a project in which we have enums that whey (de)serialized add the `Enum::Case(CaseStruct)` as a `u8` or `u16` before (de)serializing the `CaseStruct`. Currently we've...
`SafeAccount::from_file` requires `KeyFile` (accounts/ethstore/src/account/safe_account.rs) however `OpaqueKeyFile` (accounts/ethstore/src/json/key_file.rs) is exported publicly for the crate. The only way to use the actual `KeyFile` to build a `SafeAccount` from a keystore file is...