rust_ocpp/
lib.rs

1//! # rust-ocpp
2//!
3//! `rust-ocpp` is a collection of data types and enums specified by the Open Charge Point Protocol
4//! by Open Charge Alliance
5//!
6//! More Info on Open Charge Alliance can be found here: [Open Charge Alliance](https://www.openchargealliance.org/)
7//!
8//! It aims to implement the `ocpp 1.6` and `ocpp 2.0.1` protocols.
9//!
10//! # v1_6
11//! The [v1_6](v1_6) module contains the `ocpp 1.6` implementation
12//!
13//! # v2_0_1
14//! The [v2_0_1](v2_0_1) module contains the `ocpp 2.0.1` implementation
15/// tests
16#[cfg(test)]
17pub mod tests;
18#[cfg(feature = "v1_6")]
19pub mod v1_6;
20#[cfg(feature = "v2_0_1")]
21pub mod v2_0_1;