mediatypes 0.2.0

A comprehensive collection of MIME types (media types) as string constants
Documentation
//! Font MIME types
//!
//! This module contains MIME types for font data.

/// `font/collection`
///
/// Common file extensions: `.ttc`
pub const COLLECTION: &str = "font/collection";

/// `font/otf`
///
/// Common file extensions: `.otf`
pub const OTF: &str = "font/otf";

/// `font/sfnt`
pub const SFNT: &str = "font/sfnt";

/// `font/ttf`
///
/// Common file extensions: `.ttf`
pub const TTF: &str = "font/ttf";

/// `font/woff`
///
/// Common file extensions: `.woff`
pub const WOFF: &str = "font/woff";

/// `font/woff2`
///
/// Common file extensions: `.woff2`
pub const WOFF2: &str = "font/woff2";