1 unstable release
Uses new Rust 2024
new 0.1.2 | Apr 3, 2025 |
---|
#76 in #mime
62KB
855 lines
aloe-mime
aloe-mime is a powerful Rust library designed for retrieving MIME types based on file extensions. It is implemented with efficiency and extensibility in mind, facilitating seamless integration within varied systems requiring MIME type support.
Overview
MIME types, an acronym for Multipurpose Internet Mail Extensions, are used to specify the nature and format of a document, file, or assortment of bytes. aloe-mime
facilitates this by allowing users to efficiently map file extensions to their respective MIME types using a simple and intuitive API.
Features
- Simple API: Easily query and retrieve MIME types for given file extensions.
- Highly Performant: Leveraging Rust's powerful features, the library is designed for speed and low overhead.
- Extendable Table: Customize and expand the list of supported MIME types according to your application needs.
Usage
Add aloe-mime
to your project's Cargo.toml
:
[dependencies]
aloe-mime = "0.1.0"
Example
use aloe_mime::*;
fn main() {
let file_extension = String::from("txt");
let mime_types = get_mime_types_for_file_extension(&file_extension);
for mime in mime_types {
println!("{}", mime);
}
}
Structs
MimeTypeTableEntry
: Represents an entry within the MIME type table containing a file extension and corresponding MIME type.
Functions
get_mime_types_for_file_extension
: Retrieve a vector of MIME types associated with a file extension.
Extending the MIME Type Table
You can add your custom MIME types by creating new MimeTypeTableEntry
and managing a custom table.
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
License
This project is licensed under the GPL-3.0 license.
This README.md file is generated by an AI model and may not be 100% accurate but should provide a substantial overview of the crate's purpose and uses.
This crate is a translation of the JUCE module.
JUCE is a c++ software framework for developing high performance audio applications.
Usage falls under the GPLv3 as well as the JUCE commercial license.
See github.com/juce-framework/JUCE and the JUCE license page for details.
This crate is in the process of being translated from c++ to rust. For progress updates, please see the workspacer rust project. designed specifically for rust projects.
Dependencies
~13–23MB
~378K SLoC