You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Daniel Abramov 5149e40ef6 Add .travis.yml and update README.md 7 years ago
examples Update example for new API. 7 years ago
src Set TCP_NODELAY on connect. 7 years ago
tests Migrate to the tokio-io (fixes #1) 7 years ago
.gitignore Repository created. 8 years ago
.travis.yml Add .travis.yml and update README.md 7 years ago
Cargo.toml Version 0.2.1 released. 7 years ago
LICENSE Add license and update manifest 7 years ago
README.md Add README.md to the repository 7 years ago

README.md

tokio-tungstenite

Asynchronous WebSockets for Tokio stack.

MIT licensed Crates.io

Documentation

Usage

First, you need to add this in your Cargo.toml:

[dependencies]
tokio-timer = "*"

Next, add this to your crate:

extern crate tokio_tungstenite;

Take a loot at the examples/ directory for client and server examples. You may also want to get familiar with tokio if you don't have any experience with it.

What is tokio-tungstenite?

This crate is based on tungstenite-rs Rust WebSocket library and provides tokio bindings and wrappers for it, so you can use it with non-blocking/asynchronous TcpStreams from and couple it together with other crates from tokio stack.