dnp3 1.6.0

Rust implementation of DNP3 (IEEE 1815) with idiomatic bindings for C, C++, .NET, and Java
Documentation
pub use association::*;
pub use error::*;
pub use file::*;
pub use handler::*;
pub use poll::PollHandle;
pub use read_handler::*;
pub use request::*;

mod association;
mod error;
mod file;
mod handler;
mod read_handler;
mod request;

pub(crate) mod convert;
pub(crate) mod extract;
pub(crate) mod messages;
pub(crate) mod poll;
pub(crate) mod promise;
pub(crate) mod task;
pub(crate) mod tasks;

#[cfg(test)]
mod tests;