9 releases
0.0.11 | Nov 24, 2023 |
---|---|
0.0.10 | Nov 22, 2023 |
0.0.9 | Oct 17, 2023 |
0.0.7 | Sep 27, 2023 |
0.0.2 |
|
#136 in WebSocket
34 downloads per month
Used in async_uws
63KB
1.5K
SLoC
Rust wrapper for uWebSockets
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++");
This package is available here - https://crates.io/crates/uwebsockets_rs/versions
Dependencies
~0.5–2.4MB
~47K SLoC