murgamu 0.7.3

Murgamü is an NestJS-inspired web framework for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod algorithm;
pub mod mur_compression;
pub mod config;
pub mod crc;
pub mod deflate;
pub mod gzip;
pub mod level;

pub use algorithm::MurCompressionAlgorithm;
pub use mur_compression::MurCompression;
pub use config::MurCompressionConfig;
pub use crc::MurCrc;
pub use deflate::MurDeflateEncoder;
pub use gzip::MurGzipEncoder;
pub use level::MurCompressionLevel;

#[cfg(test)]
mod test;