azathoth_transformers 0.1.0

Data transformers for the AzathothC2 project
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![doc = include_str!("../README.md")]
#![no_std]
#![warn(missing_docs)]
#![warn(clippy::pedantic)]
extern crate alloc;

/// Basic transformers (Append, Prepend, Xor)
pub mod basic;
mod pipeline;
mod traits;

pub use pipeline::*;
pub use traits::*;