static-web-server 2.42.0

A cross-platform, high-performance and asynchronous web server for static files-serving.
Documentation
// SPDX-License-Identifier: MIT OR Apache-2.0
// This file is part of Static Web Server.
// See https://static-web-server.net/ for more information
// Copyright (C) 2019-present Jose Quintana <joseluisq.net>

//! Additional types for the headers module in order to handle Accept-Encoding
//! and Accept headers.
//!

#![allow(unused)]

mod accept;
mod accept_encoding;
mod content_coding;
mod quality_value;

pub(crate) use accept::Accept;
pub(crate) use accept_encoding::AcceptEncoding;
pub(crate) use content_coding::ContentCoding;
pub(crate) use quality_value::QualityValue;