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
4a71349d38
|
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 | 5 years ago | |
Cargo.toml | 5 years ago | |
LICENSE | 5 years ago | |
README.md | 5 years ago |
README.md
async-tungstenite
Asynchronous WebSockets for async-std and std
Future
s.
Usage
Add this in your Cargo.toml
:
[dependencies]
async-tungstenite = "*"
Take a look at the examples/
directory for client and server examples. You may also want to get familiar with
async-std
if you don't have any experience with it.
What is async-tungstenite?
This crate is based on tungstenite-rs
Rust WebSocket library and provides async-std 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 the async-std stack.
tokio-tungstenite
Originally this crate was created as a fork of tokio-tungstenite and ported to async-std.