aeronet
A light-as-air client/server networking library with first-class support for Bevy, providing a consistent API which can be implemented by different transport mechanisms.
Aeronet's main feature is the transport - an interface for sending data to and receiving data from an endpoint, either the client or the server. You write your code against this interface (or use the Bevy plugin which provides events used by the transport), and you don't have to worry about the underlying mechanism used to transport your data.
Transports
aeronet_channelvia in-memory MPSC channels, useful for local singleplayer serversaeronet_wt_nativevia WebTransport, useful for a generic client-server architecture with support for WASM clients