Thomas Eizinger

Results 368 issues of Thomas Eizinger

That works, but it’s not a very nice behavior. Certificates should be verified during the handshake, as this allows you to abort the connection attempt during TLS handshake. Verifying the...

### Description This is inspired by PRs from @joshuef (#4751, #4753, #4754). The idea is to use `Bytes` to avoid potentially costly clones of large chunks of memory as we...

I am a VSCode user and I just learned about `rust-analyzer.workspace.symbol.search.scope`. Searching types from dependencies has been one of the features I really missed from IntelliJ. Unfortunately, it appears that...

Fundamentally, traits are meant for abstractions. If we don't create abstractions, the traits are not needed. As part of working on https://github.com/multiformats/rust-multihash/pull/272, it became apparent that the `MultihashDigest` and `Hasher`...

The `trust-dns` org has rebranded and renamed all of their crates to `hickory-dns-xyz`. This makes all the old crates effectively unmaintained from version 0.23 onwards. Would it be appropriate to...

Hi, I did some work on the `rust-yamux` implementation lately and when trying to integrate it with `rust-libp2p`, I ran into interop errors with `nim-libp2p`: https://github.com/libp2p/rust-libp2p/pull/3013 After some debugging and...

We are in the [process](https://github.com/libp2p/rust-libp2p/pull/3312) of adopting `quick-protobuf` in `rust-libp2p` and a few points came up whilst using the API. - The naming of various traits and functions is too...

Hi! I am wondering if it would be possible to release a new version that includes https://github.com/tafia/quick-protobuf/pull/247? Are there any other issues you'd like to have addressed before cutting a...

I have a rendezvous channel with one `Receiver` and multiple senders, each sender sitting in its own task. I'd like these tasks to wake up when the `Receiver` gets dropped....