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
59ca2c885e
|
5 years ago | |
---|---|---|
autobahn | 6 years ago | |
examples | 5 years ago | |
scripts | 6 years ago | |
src | 5 years ago | |
tests | 5 years ago | |
.gitignore | 8 years ago | |
.travis.yml | 6 years ago | |
Cargo.toml | 5 years ago | |
LICENSE | 8 years ago | |
README.md | 5 years ago |
README.md
tokio-tungstenite
Asynchronous WebSockets for Tokio stack.
Usage
Add this in your Cargo.toml
:
[dependencies]
tokio-tungstenite = "*"
Take a look 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 TcpStream
s from and couple it together with other crates from tokio
stack.