rconrs 0.2.1

Rust implementation of SRCDS RCON Protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Rust implementation of SRCDS RCON Protocol.
//!
//! Reference: https://developer.valvesoftware.com/wiki/Source_RCON_Protocol
//!
//! Example implementations:
//! - Palworld `Info` command execution example: [palworld.rs](https://github.com/tukeJonny/rcon-rs/blob/master/examples/palworld.rs)
#![warn(missing_docs)]
extern crate anyhow;
extern crate num_derive;

/// This module provides RCON client traits.
pub mod client;

/// This module provides error types caused by RCON client.
pub mod error;
mod packet;