memory-serve 2.1.0

Fast static file serving for axum web applications
Documentation
use axum::http::StatusCode;

use crate::CacheControl;

/// Minimum file size (in bytes) to consider compression
pub(crate) const MIN_COMPRESS_SIZE: u64 = 128;

/// File mime types that can possibly be compressed
pub(crate) const COMPRESS_TYPES: &[&str] = &[
    "text/html",
    "text/css",
    "application/json",
    "text/javascript",
    "application/javascript",
    "application/xml",
    "text/xml",
    "image/svg+xml",
    "application/wasm",
];

/// Internal configuration shared across `MemoryServe` handlers.
#[derive(Debug, Clone, Copy)]
pub(super) struct ServeOptions {
    pub(super) index_file: Option<&'static str>,
    pub(super) index_on_subdirectories: bool,
    pub(super) fallback: Option<&'static str>,
    pub(super) fallback_status: StatusCode,
    pub(super) html_cache_control: CacheControl,
    pub(super) cache_control: CacheControl,
    pub(super) enable_brotli: bool,
    pub(super) enable_gzip: bool,
    pub(super) enable_clean_url: bool,
}

impl Default for ServeOptions {
    /// Provide the default serving configuration used by `MemoryServe::default`.
    fn default() -> Self {
        Self {
            index_file: Some("/index.html"),
            index_on_subdirectories: false,
            fallback: None,
            fallback_status: StatusCode::NOT_FOUND,
            html_cache_control: CacheControl::Short,
            cache_control: CacheControl::Medium,
            enable_brotli: !cfg!(debug_assertions),
            enable_gzip: !cfg!(debug_assertions),
            enable_clean_url: false,
        }
    }
}