Lachezar Lechev

Results 250 comments of Lachezar Lechev

I've added another Merge Sort implementation, I will try to do some other as well PR #57 PS: I didn't see that it's already implemented :grin: Update: Binary tree PR...

Dijstra is actually implemented but not marked as one @r0hit-gupta

Well actually I coulnd't. 1. `run` requires output future `Ok((_, conn))` or `Err((_, conn))`, but transaction on other hand is a bit different. It accepts a Future. You can still...

@khuey would you guide me through the implementation? I would like to try to implement it, if you have an idea how it will work?

How to implement the Transaction API of `tokio-postgres` in `bb8`.

Another consideration for this issue would be to allow `tracing` on the postgres Pool. I'm having issue in our async application because we can't use `#[instrument]` attr. macro to instrument...

Yes! That's actually a great start, thank you! I was looking into implementing Debug as well but you were very fast to do it 😅 Here's also an idea -...

@andylokandy I would also benefit from the implementation of `Array` for `[T; CONST_GENERIC]`.

I took a look at upgrading the `aes` dependency, however, it seems that the feature that is used in `ethsign-crypto` of `aes` called `crt` is no longer available in `0.8`....

You should recover the public key from the signature and compare it's address to the one you have. ``` let signature = Signature { r, s, v }; let message_hash...