async_uws 0.0.13

Rust async HTTP & WebSocket server based on uWebSockets
docs.rs failed to build async_uws-0.0.13
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.

Rust async HTTP and WebSocket server

Based on uWebSockets, tokio and synchronous rust server (if you are not interested in async you might find that lib useful)

Usage

In order to use uWebSockets in your Rust application you will have to link the following static libraries to you binary - libz, libuv, libssl, libcrypto and libstdc++.

It may look something like that in your build.rs file:

println!("cargo:rustc-link-lib=z");
println!("cargo:rustc-link-lib=uv");
println!("cargo:rustc-link-lib=ssl");
println!("cargo:rustc-link-lib=crypto");
println!("cargo:rustc-link-lib=stdc++");