A simple Rust program to compress files using gzip compression with the `flate2` crate.
## Features
- Compresses a source file to a target file using gzip compression.
- Uses the best compression level for optimal file size reduction.
- Displays the original and compressed file sizes.
- Measures and displays the time taken for the compression process.
## Usage
cargo run <source> <target>