quicksocket 0.1.1

A simple, natively parallel WebSocket server module for Python built with Rust, tokio, and pyo3.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// quicksocket
// =============
//
// A simple WebSocket server that is compiled via pyo3 to a native Python module. This module targets Python consumption primarily, but Rust consumption is theoretically also valid, and used for testing purposes.

#[macro_use]
extern crate lazy_static;

mod server;
mod api;

pub use api::*;