websocket_toolkit 0.2.0

A WebSocket toolkit for Rust, enabling efficient real-time communication with flexible reconnection and message handling capabilities.
Documentation
FROM ubuntu:22.04

ENV DEBIAN_FRONTEND=noninteractive \
    PATH="/root/.cargo/bin:${PATH}"

WORKDIR /workspace

COPY . .

RUN apt-get update && apt-get install -y \
    sudo \
    curl \
    net-tools \
    build-essential \
    libssl-dev \
    pkg-config \
    clang \
    llvm\
    libc6-dev \
    && apt-get clean \
    && rm -rf /var/lib/apt/lists/* \
    && curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --default-toolchain stable -y \
    && rustup install stable \
    && rustup install nightly \
    && rustup default nightly \
    && cargo install cargo-fuzz \
    && cargo fuzz build \
    && cargo build --release \