tokio-connectors 0.1.6

A collection of connectors for tokio-based clients and servers
Documentation

(TCP|UDP|UNIX|OTHER) Servers and Clients for Tokio

This crate provides a bunch of servers and clients for communication between TCP, (UDP), Unix, (and in future, more) sockets and socket-like things, because I hope to never again need to write connection management logic.

Each connector also supports a set of common Codecs for encoding and decoding outgoing and incoming messages respectively.

Status

TODO

Features

Connectors:

  • Unix
    • Server
    • Client
  • TCP
    • Server
    • Client
  • UDP
    • Server
    • Client

Codecs:

  • JSON
  • serde/postcard+COBS
  • protobuf?
  • rkyv?
  • wincode?