//! Byte Size is a library that can compress short strings more efficiently than smaz, at the expense of extra runtime cost.
//!
//! See [readme](https://github.com/ray33ee/byte-size/blob/main/readme.md) for more information
extern crate core;
///Contains the `Builder` struct used to construct `Engine`s
///Contains the `Engine` struct used to compress and decompress
///Contains all possible error types raised by the decompressor
///Convenience function to compress using default options
pub use cratecompress;
///Convenience function to compress using default options
pub use cratedecompress;
pub use crateResult;