File tree 2 files changed +8
-14
lines changed
2 files changed +8
-14
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
authors = [
" Jason Housley <[email protected] >" ]
3
3
description = " Lightweight, event-driven WebSockets for Rust."
4
- documentation = " https://ws-rs.org/docs "
4
+ documentation = " https://docs.rs/ws/latest/ws/index.html "
5
5
keywords = [
6
6
" websocket" ,
7
7
" mio" ,
@@ -13,7 +13,7 @@ license = "MIT"
13
13
name = " ws"
14
14
readme = " README.md"
15
15
repository = " https://github.com/housleyjk/ws-rs"
16
- version = " 0.9.1 "
16
+ version = " 0.9.2 "
17
17
18
18
[dependencies ]
19
19
byteorder = " 1.2.1"
Original file line number Diff line number Diff line change @@ -17,9 +17,9 @@ Introduction
17
17
[ ![ MIT licensed] ( https://img.shields.io/badge/license-MIT-blue.svg )] ( ./LICENSE )
18
18
[ ![ Crate] ( http://meritbadge.herokuapp.com/ws )] ( https://crates.io/crates/ws )
19
19
20
- ** [ Homepage] ( https://ws-rs.org ) **
20
+ ** [ Homepage] ( https://github.com/housleyjk/ ws-rs/ ) **
21
21
22
- ** [ API Documentation] ( https://ws-rs.org/docs ) **
22
+ ** [ API Documentation] ( https://docs.rs/ws/latest/ws/index.html ) **
23
23
24
24
This library provides an implementation of WebSockets,
25
25
[ RFC6455] ( https://tools.ietf.org/html/rfc6455 ) using [ MIO] ( https://github.com/carllerche/mio ) . It
@@ -33,21 +33,15 @@ around the WebSocket protocol.
33
33
Getting Started
34
34
---------------
35
35
36
- For detailed installation and usage instructions, check out the [ guide] ( https://ws-rs.org/guide ) .
36
+ Check out the [ examples] ( https://github.com/housleyjk/ws-rs/blob/master/examples/server.rs ) .
37
+
37
38
38
39
Features
39
40
--------
40
41
41
42
WS-RS provides a complete implementation of the WebSocket specification. There is also support for
42
- [ ssl] ( https://ws-rs.org/guide/ssl ) and
43
- [ permessage-deflate] ( https://ws-rs.org/guide/deflate ) .
44
-
45
- Testing
46
- -------
47
-
48
- WS-RS is thoroughly tested and passes the [ Autobahn Test Suite] ( https://crossbar.io/autobahn/ ) for
49
- WebSockets, including the tests for ` permessage-deflate ` . Visit
50
- [ ws-rs.org] ( https://ws-rs.org/testing/autobahn/results ) to view the results of the latest test run.
43
+ [ ssl] ( https://github.com/housleyjk/ws-rs/blob/master/examples/ssl-server.rs ) and
44
+ [ permessage-deflate] ( https://github.com/housleyjk/ws-rs/blob/master/examples/autobahn-server.rs ) .
51
45
52
46
Contributing
53
47
------------
You can’t perform that action at this time.
0 commit comments