//! ACE archive format support
//!
//! ACE is an archive format created by Marcel Lemke in the late 1990s.
//! It supports LZ77-based compression with Huffman encoding.
//!
//! This implementation is based on the acefile Python library by
//! Daniel Roethlisberger (BSD-2-Clause license).
pub use AceArchive;
pub use decrypt_ace_data;
pub use FileHeader;
pub use AcePasswordVerifier;