yengine 0.0.8

Communication library for the Yate Engine external module protocol.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![doc = include_str!("../README.md")]
//!

#![cfg_attr(docsrs, feature(doc_cfg))]
#![warn(missing_docs, clippy::unimplemented)]

pub mod engine;
pub mod wire;

mod module;
pub use module::Module;

pub use engine::Engine;