basisu 0.1.0

A bit-exact pure-Rust Basis Universal texture transcoder (.ktx2 and .basis).
Documentation
//! BasisLZ entropy codec for the ETC1S source path: the Huffman decoder, the
//! bitwise stream decoder, the endpoint/selector codebook decode (with its
//! move-to-front selector history), and the per-target transcoders that turn
//! ETC1S blocks into each GPU format.

pub mod amf;
pub mod astc_pack;
pub mod astc_tables;
pub mod bc7_chroma;
pub mod decoder;
pub mod etc1s;
pub mod etc1s_astc;
pub mod etc1s_atc;
pub mod etc1s_bc1;
pub mod etc1s_bc3_bc5;
pub mod etc1s_bc4;
pub mod etc1s_bc7;
pub mod etc1s_eac;
pub mod etc1s_etc2;
pub mod etc1s_fxt1;
pub mod etc1s_pvrtc2;
pub mod huffman;