Update links

pull/64/head
Alex Touchet 5 years ago committed by GitHub
parent 78cea4992b
commit 7581706c90
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      README.md

@ -1,6 +1,6 @@
# Tungstenite # Tungstenite
Lightweight stream-based WebSocket implementation for [Rust](http://www.rust-lang.org). Lightweight stream-based WebSocket implementation for [Rust](https://www.rust-lang.org/).
```rust ```rust
use std::net::TcpListener; use std::net::TcpListener;
@ -38,7 +38,7 @@ Introduction
This library provides an implementation of WebSockets, This library provides an implementation of WebSockets,
[RFC6455](https://tools.ietf.org/html/rfc6455). It allows for both synchronous (like TcpStream) [RFC6455](https://tools.ietf.org/html/rfc6455). It allows for both synchronous (like TcpStream)
and asynchronous usage and is easy to integrate into any third-party event loops including and asynchronous usage and is easy to integrate into any third-party event loops including
[MIO](https://github.com/carllerche/mio). The API design abstracts away all the internals of the [MIO](https://github.com/tokio-rs/mio). The API design abstracts away all the internals of the
WebSocket protocol but still makes them accessible for those who wants full control over the WebSocket protocol but still makes them accessible for those who wants full control over the
network. network.
@ -61,7 +61,7 @@ There is no support for permessage-deflate at the moment. It's planned.
Testing Testing
------- -------
Tungstenite is thoroughly tested and passes the [Autobahn Test Suite](http://autobahn.ws/testsuite/) for Tungstenite is thoroughly tested and passes the [Autobahn Test Suite](https://crossbar.io/autobahn/) for
WebSockets. It is also covered by internal unit tests as good as possible. WebSockets. It is also covered by internal unit tests as good as possible.
Contributing Contributing

Loading…
Cancel
Save