6 releases
0.3.0 | Mar 14, 2024 |
---|---|
0.2.1 | Jan 23, 2024 |
0.2.0 | Nov 24, 2023 |
0.1.2 | Nov 24, 2023 |
#10 in #multiplexing
84 downloads per month
330KB
6K
SLoC
Juliet protocol implementation
This crate implements the Juliet multiplexing protocol version 1.0.1 as laid out in the Juliet RFC. It aims to be a secure, simple, easy to verify/review implementation that is still reasonably performant.
Benefits
The Juliet protocol comes with a core set of features, such as
- carefully designed with security and DoS resilience as its foremoast goal,
- customizable frame sizes,
- up to 256 multiplexed, interleaved channels,
- backpressure support fully baked in, and
- low overhead (4 bytes per frame + 1-5 bytes depending on payload length).
This crate's implementation includes benefits such as
- a side-effect-free implementation of the Juliet protocol,
- an
async
IO layer integrated with thebytes
crate to use it, and - a type-safe RPC layer built on top.
Examples
For a quick usage example, see examples/fizzbuzz.rs
.
tracing
support
The crate has an optional dependency on the tracing
crate, which, if enabled, allows detailed insights through logs. If the feature is not enabled, no log statements are compiled in.
Log levels in general are used as follows:
ERROR
andWARN
: Actual issues that are not protocol level errors -- peer errors are expected and do not warrant aWARN
level.INFO
: Insights into received high level events (e.g. connection, disconnection, etc), except information concerning individual requests/messages.DEBUG
: Detailed insights down to the level of individual requests, but not frames. A multi-megabyte single message transmission will NOT clog the logs.TRACE
: LikeDEBUG
, but also including frame and wire-level information, as well as local functions being called.
At INFO
, it is thus conceivable for a peer to maliciously spam local logs, although with some effort if connection attempts are rate limited. At DEBUG
or lower, this becomes trivial.
Dependencies
~3.5–9.5MB
~87K SLoC