#mime #media-type #media-extensions #no-std

no-std mime-db

Media Type Database, looks up extension or media type

15 releases (9 stable)

new 1.8.0 Nov 23, 2024
1.7.0 Jun 26, 2023
1.6.0 Oct 9, 2021
1.4.0 Jun 4, 2021
0.1.3 Dec 12, 2019

#519 in Database interfaces

Download history 138/week @ 2024-08-03 87/week @ 2024-08-10 56/week @ 2024-08-17 33/week @ 2024-08-24 42/week @ 2024-08-31 40/week @ 2024-09-07 40/week @ 2024-09-14 91/week @ 2024-09-21 63/week @ 2024-09-28 44/week @ 2024-10-05 94/week @ 2024-10-12 74/week @ 2024-10-19 30/week @ 2024-10-26 52/week @ 2024-11-02 42/week @ 2024-11-09 35/week @ 2024-11-16

169 downloads per month
Used in 4 crates

MIT/Apache

73KB
2.5K SLoC

mime-db

Media Type Database, looks up `extension` or `media type`

Installation

cargo add mime-db

Usage

use mime_db::{extension, extensions, lookup};

assert_eq!(lookup("json").unwrap(), "application/json");
assert_eq!(lookup(".md").unwrap(), "text/markdown");
assert_eq!(lookup("folder/file.js").unwrap(), "application/javascript");
assert_eq!(lookup("folder/.htaccess"), None);
assert_eq!(lookup("cats"), None);

assert!(extensions2("application/octet-stream").eq([
    "bin", "dms", "lrf", "mar", "so", "dist", "distz", "pkg", "bpk", "dump", "elc",
    "deploy", "exe", "dll", "deb", "dmg", "iso", "img", "msi", "msp", "msm", "buffer"
]
.iter()
.cloned()));

assert_eq!(extension("application/octet-stream").unwrap(), "bin");

License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

No runtime deps

~0–1.8MB
~25K SLoC