nosapi_blackbox 0.2.0

A library for working with Gameforge's blackbox string
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! A library for working with Gameforge's blackbox string.
//!
//! See the [`Blackbox`] documentation page for examples.

pub mod blackbox;
pub(crate) mod constants;
pub mod fingerprint;
#[cfg(test)]
pub(crate) mod mock;
pub(crate) mod utils;
pub mod vector;

pub use blackbox::Blackbox;
pub use fingerprint::Fingerprint;
pub use vector::VectorString;