Mimee is a Rust library that provides a mapping between file extensions and their corresponding MIME types. It allows you to easily determine the MIME type of a file based on its extension.
- Predefined set of file extensions and their corresponding MIME types.
- Retrieve the MIME type for a given file path.
- Supports both forward and backward slashes in file paths.
- Handles non-ASCII characters in file paths.
Add this to your Cargo.toml
:
[dependencies]
mimee = "0.1.0"
use mimee::MimeDict;
fn main() {
let mime_dict = MimeDict::new();
let content_type = mime_dict.get_content_type("example.txt".to_string());
println!("MIME type: {:?}", content_type);
}
This project is licensed under the MIT License