quilkin 0.10.0

Quilkin is a non-transparent UDP proxy specifically designed for use with large scale multiplayer dedicated game server deployments, to ensure security, access control, telemetry data, metrics and more.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// SPDX-FileCopyrightText: 2020 Tyler Neely, David Rusu
// SPDX-License-Identifier: Apache-2.0

//! The code in this module is copied from <https://github.com/rust-crdt/rust-crdt>
//! and has some modifications

mod ctx;
pub mod dot;
pub mod map;
pub mod orswot;
mod traits;
pub mod vclock;

pub use dot::{Dot, DotRange};
pub use map::Map;
pub use orswot::Orswot;
pub use traits::{Cmrdt, ContentEqual, Cvrdt, ResetRemove};
pub use vclock::VClock;