websocket 0.22.4

A WebSocket (RFC6455) library for Rust.
Documentation
#!/usr/bin/env bash
# Author michael <themichaeleden@gmail.com>
set -euo pipefail
set -x
SOURCE_DIR=$(readlink -f "${BASH_SOURCE[0]}")
SOURCE_DIR=$(dirname "$SOURCE_DIR")
cd "${SOURCE_DIR}/.."
WSSERVER_PID=

function cleanup() {
    kill -9 ${WSSERVER_PID}
}
trap cleanup TERM EXIT

function test_diff() {
    SAVED_RESULTS=$(sed 's/NON-STRICT/OK/g' autobahn/server-results.json)
    DIFF=$(diff \
        <(jq -S 'del(."rust-websocket" | .. | .duration?)' "$SAVED_RESULTS") \
        <(jq -S 'del(."rust-websocket" | .. | .duration?)' 'autobahn/server/index.json') )

    if [[ $DIFF ]]; then
        echo Difference in results, either this is a regression or \
             one should update autobahn/server-results.json with the new results. \
             The results are:
        echo $DIFF
        exit 64
    fi
}

# Test synchronous version
cargo build --example autobahn-server
./target/debug/examples/autobahn-server & WSSERVER_PID=$!
echo "Server PID: ${WSSERVER_PID}"
sleep 10
wstest -m fuzzingclient -s 'autobahn/fuzzingclient.json'
kill -9 ${WSSERVER_PID}
test_diff

# Test asynchronous version
cargo build --example async-autobahn-server
./target/debug/examples/async-autobahn-server & WSSERVER_PID=$!
echo "Server PID: ${WSSERVER_PID}"
sleep 10
wstest -m fuzzingclient -s 'autobahn/fuzzingclient.json'
kill -9 ${WSSERVER_PID}
test_diff