Skip to content

GenrikhFetischev/uwebsockets_rs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Rust wrapper for the uWebSockets

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages