rak-rs 0.3.2

A fully functional RakNet implementation in pure rust, asynchronously driven.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[cfg(feature = "async_std")]
mod async_std;

#[cfg(feature = "tokio")]
mod tokio;

#[cfg(feature = "async_std")]
pub use self::async_std::Notify;

#[cfg(feature = "tokio")]
pub use self::tokio::Notify;