mumble-protocol 0.4.1

Rust implementation of the Mumble protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! [Mumble] protocol implementation in Rust.
//!
//! [Mumble]: https://mumble.info/

#![deny(missing_docs)]
#![warn(clippy::all)]

pub mod control;
#[cfg(feature = "openssl")]
pub mod crypt;
pub mod ping;
pub mod varint;
pub mod voice;

pub use voice::Clientbound;
pub use voice::Serverbound;