4 releases (2 breaking)

0.3.0 Feb 28, 2021
0.2.0 Aug 20, 2020
0.1.1 Jul 30, 2020
0.1.0 Jul 24, 2020

#193 in WebSocket

26 downloads per month

Apache-2.0

9KB
161 lines

warp-websockify

Build Status GitHub GitHub top language Crates.io Docs.rs

websockify implementation for warp

use warp::Filter;
use warp_websockify::{Destination, websockify};

let dest = Destination::tcp("localhost:5901").unwrap();
let serve = websockify(dest);

lib.rs:

warp-websockify

websockify implementation for warp

use warp::Filter;
use warp_websockify::{Destination, websockify};

let dest = Destination::tcp("localhost:5901").unwrap();
let serve = websockify(dest);

Dependencies

~8–20MB
~253K SLoC