All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
- Breaking changes in
asynch::ws
module:- Replace the
const N: usize
parameter of all senders and receivers with a&'a mut [u8]
buffer provided externally. Reason: this provides an option to (statically) pre-allocate the buffers outside of the async code thus resulting in futures' size reduction. - Re-implement the
accept
function asAcceptor::run
, whereAcceptor
is a struct having these buffers managed internally
- Replace the
- Breaking change: feature
edge-net
renamed toedge-ws
- Depend on
edge-ws
instead of on all of theedge-net