1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! # Squash Compression Library
//!
//! A library for compression software in Rust with focus on scientific data.
//! Currently the library is under private development. It will be released Q4 2022.
//! 
//! 🤿


#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        let result = 2 + 2;
        assert_eq!(result, 4);
    }
}