...
Protocol | Library | Description |
---|---|---|
HTTP | http | A general-purpose library of common HTTP types. This means that it will be needed to implement our own HTTP server with the use of this library. |
route-recognizer | Recognizes URL patterns with support for dynamic and glob segments. Can be easily replaced with our custom solution later. Used to speed up the development process. Also doesn't have any dependencies. | |
Web Socket | async-tungstenite | Asynchronous WebSockets for async-std, tokio, gio and any std Future s runtime. Based on tungstenite crate. |
...