Elena Frank
Elena Frank
Issue #158 Handle QSelf property of TypePath in the actor macro.
Issue #161 Implement From for the actor message enum in the actor macro. Enables constructing the actor message enum (`ActorMsg`) of an actor from the specific message types.
The actor macro currently implements `Into for #ty` for each message type (`#ty`) in the message enum (`#name`), which enables converting from a specific message to the expected message enum....
# Description _Draft until `if-watch-2.0.0` is published._ Update to `if-watch` version `v2.0.0`, which allows us to simplify our integration in the tcp transport quite a bit: - Since `IfWatcher::new` is...
## Description With #2652 the concept of listeners was removed from the `Transport` in the sense that having listener streams is not enforced anymore. Instead the transport is responsible for...
## Description With #2652 polling the listeners of a transport became the transport's responsibility. We currently do this in `TcpTransport::poll` analogous to how it was done before in the swarm...
## Description In #1093 we enabled paths for ws / wss multiaddresses. We are currently ignoring this path in our websocket transport `WsConfig`, and just care about whether it's an...
# Summary Implement the [QUIC](https://datatracker.ietf.org/doc/html/rfc9000) transport for rust-libp2p. # Done criteria - Quic can be used as a transport in the `Swarm` for communication between nodes that can directly reach...
Right now, as a user there is no way of knowing whether all write data on a stream has been acknowledged, until/ unless `finish` resolves with an `Ok`. There is...
Drive-by PR fixing a typo I noticed while viewing the code. I assume it was unintentional?