mii-http 0.1.0

Turn a .http specs file into a real HTTP server, backed by the shell commands you already have.
Documentation
//! mii-http library root.
//!
//! Module layout follows the parsing-vs-execution split:
//!
//! - [`spec`] — pure AST types.
//! - [`parse`] — turns source text into AST (spec parser + Exec sub-parser).
//! - [`check`] — semantic validation on the AST.
//! - [`value`] — runtime validation of incoming values against type expressions.
//! - [`exec`] — runtime: argv assembly + pipeline execution (no shell).
//! - [`server`] — axum HTTP server gluing the pieces together.
//! - [`diag`] — diagnostic reporting via ariadne.

pub mod spec;
pub mod parse;
pub mod check;
pub mod value;
pub mod exec;
pub mod server;
pub mod diag;