buup 0.25.5

Core transformation library with zero dependencies
Documentation
pub mod ascii_to_hex;
pub mod base64_decode;
pub mod base64_encode;
pub mod bin_to_dec;
pub mod bin_to_hex;
pub mod binary_decode;
pub mod binary_encode;
pub mod camel_to_snake;
pub mod color_code_convert;
pub mod csv_to_json;
pub mod dec_to_bin;
pub mod dec_to_hex;
pub mod deflate_compress;
pub mod deflate_decompress;
pub mod gzip_compress;
pub mod gzip_decompress;
pub mod hex_decode;
pub mod hex_encode;
pub mod hex_to_ascii;
pub mod hex_to_bin;
pub mod hex_to_dec;
pub mod hex_to_hsl;
pub mod hex_to_rgb;
pub mod hsl_to_hex;
pub mod hsl_to_rgb;
pub mod html_decode;
pub mod html_encode;
pub mod html_to_markdown;
pub mod json_formatter;
pub mod json_minifier;
pub mod json_to_csv;
pub mod jwt_decode;
pub mod line_number_adder;
pub mod line_number_remover;
pub mod line_sorter;
pub mod markdown_to_html;
pub mod md5_hash;
pub mod morse_decode;
pub mod morse_encode;
pub mod rgb_to_hex;
pub mod rgb_to_hsl;
pub mod rot13;
pub mod sha1_hash;
pub mod sha256_hash;
pub mod slugify;
pub mod snake_to_camel;
pub mod sql_formatter;
pub mod sql_minifier;
pub mod text_reverse;
pub mod text_stats;
pub mod unique_lines;
pub mod url_decode;
pub mod url_encode;
pub mod url_parser;
pub mod uuid5_generate;
pub mod uuid_generate;
pub mod whitespace_remover;
pub mod xml_formatter;
pub mod xml_minifier;

pub use self::{
    ascii_to_hex::AsciiToHex, base64_decode::Base64Decode, base64_encode::Base64Encode,
    bin_to_dec::BinToDecTransformer, bin_to_hex::BinToHexTransformer, binary_decode::BinaryDecode,
    binary_encode::BinaryEncode, camel_to_snake::CamelToSnake,
    color_code_convert::ColorCodeConvert, csv_to_json::CsvToJson, dec_to_bin::DecToBinTransformer,
    dec_to_hex::DecToHexTransformer, deflate_compress::DeflateCompress,
    deflate_decompress::DeflateDecompress, gzip_compress::GzipCompress,
    gzip_decompress::GzipDecompress, hex_decode::HexDecode, hex_encode::HexEncode,
    hex_to_ascii::HexToAscii, hex_to_bin::HexToBinTransformer, hex_to_dec::HexToDecTransformer,
    hex_to_hsl::HexToHsl, hex_to_rgb::HexToRgb, hsl_to_hex::HslToHex, hsl_to_rgb::HslToRgb,
    html_decode::HtmlDecode, html_encode::HtmlEncode, html_to_markdown::HtmlToMarkdown,
    json_formatter::JsonFormatter, json_minifier::JsonMinifier, json_to_csv::JsonToCsv,
    jwt_decode::JwtDecode, line_number_adder::LineNumberAdder,
    line_number_remover::LineNumberRemover, line_sorter::LineSorter,
    markdown_to_html::MarkdownToHtml, md5_hash::Md5HashTransformer, morse_decode::MorseDecode,
    morse_encode::MorseEncode, rgb_to_hex::RgbToHex, rgb_to_hsl::RgbToHsl, rot13::Rot13,
    sha1_hash::Sha1Hash, sha256_hash::Sha256HashTransformer, slugify::Slugify,
    snake_to_camel::SnakeToCamel, sql_formatter::SqlFormatter, sql_minifier::SqlMinifier,
    text_reverse::TextReverse, text_stats::TextStats, unique_lines::UniqueLines,
    url_decode::UrlDecode, url_encode::UrlEncode, url_parser::UrlParser,
    uuid5_generate::Uuid5Generate, uuid_generate::UuidGenerate,
    whitespace_remover::WhitespaceRemover, xml_formatter::XmlFormatter, xml_minifier::XmlMinifier,
};