arcature 0.1.0

Arcature: an opinionated full-stack Rust web framework. One package, batteries included.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! API subsystem: RFC 9457 problem details and typed API responses.
//!
//! [`problem`] is always available (it needs only always-on deps and the
//! validation subsystem depends on it). Additional API conveniences are
//! gated on the `api` feature.

mod kind;
pub mod problem;

pub use kind::ProblemKind;
pub use problem::{PROBLEM_JSON, Problem, ProblemBuilder};