Skip to content

Commit f6db384

Browse files
committed
doc: remove ws-rs.org from readme
1 parent a2e05e7 commit f6db384

File tree

2 files changed

+8
-14
lines changed

2 files changed

+8
-14
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["Jason Housley <[email protected]>"]
33
description = "Lightweight, event-driven WebSockets for Rust."
4-
documentation = "https://ws-rs.org/docs"
4+
documentation = "https://docs.rs/ws/latest/ws/index.html"
55
keywords = [
66
"websocket",
77
"mio",
@@ -13,7 +13,7 @@ license = "MIT"
1313
name = "ws"
1414
readme = "README.md"
1515
repository = "https://github.com/housleyjk/ws-rs"
16-
version = "0.9.1"
16+
version = "0.9.2"
1717

1818
[dependencies]
1919
byteorder = "1.2.1"

README.md

+6-12
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ Introduction
1717
[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE)
1818
[![Crate](http://meritbadge.herokuapp.com/ws)](https://crates.io/crates/ws)
1919

20-
**[Homepage](https://ws-rs.org)**
20+
**[Homepage](https://github.com/housleyjk/ws-rs/)**
2121

22-
**[API Documentation](https://ws-rs.org/docs)**
22+
**[API Documentation](https://docs.rs/ws/latest/ws/index.html)**
2323

2424
This library provides an implementation of WebSockets,
2525
[RFC6455](https://tools.ietf.org/html/rfc6455) using [MIO](https://github.com/carllerche/mio). It
@@ -33,21 +33,15 @@ around the WebSocket protocol.
3333
Getting Started
3434
---------------
3535

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+
3738

3839
Features
3940
--------
4041

4142
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).
5145

5246
Contributing
5347
------------

0 commit comments

Comments
 (0)